Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsSiteId.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 id metatag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_site_id",
12  *   label = @Translation("Site's Twitter account ID"),
13  *   description = @Translation("The numerical Twitter account ID for the website, which will be displayed in the Card's footer."),
14  *   name = "twitter:site:id",
15  *   group = "twitter_cards",
16  *   weight = 3,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsSiteId extends MetaNameBase {
23 }