Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsTitle.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 title metatag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_title",
12  *   label = @Translation("Title"),
13  *   description = @Translation("The page's title, which should be concise; it will be truncated at 70 characters by Twitter. This field is required unless this the 'type' field is set to 'photo'."),
14  *   name = "twitter:title",
15  *   group = "twitter_cards",
16  *   weight = 2,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsTitle extends MetaNameBase {
23 }