eb3cdbb4bc75aa6698ef1d88cdcb9cbf3721702f
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsDescription.php
1 <?php
2
3 namespace Drupal\metatag_twitter_cards\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * The Twitter Cards site's description.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_description",
12  *   label = @Translation("Description"),
13  *   description = @Translation("A description that concisely summarizes the content of the page, as appropriate for presentation within a Tweet. Do not re-use the title text as the description, or use this field to describe the general services provided by the website. The string will be truncated, by Twitter, at the word to 200 characters."),
14  *   name = "twitter:description",
15  *   group = "twitter_cards",
16  *   weight = 2,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsDescription extends MetaNameBase {
23 }