597af1345ae13f6b63b208dccf2c031f71c560b1
[yaffs-website] / TwitterCardsCreator.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 creator meta tag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_creator",
12  *   label = @Translation("Creator's Twitter account"),
13  *   description = @Translation("The @username for the content creator / author for this page, including the @ symbol."),
14  *   name = "twitter:creator",
15  *   group = "twitter_cards",
16  *   weight = 4,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsCreator extends MetaNameBase {
23 }