d6ecaa5bfeeb31f108706736fe0e4b950f1295e2
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsLabel1.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  * Provides a plugin for the 'twitter:label1' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_label1",
12  *   label = @Translation("Label 1"),
13  *   description = @Translation("This field expects a string, and you can specify values for labels such as price, items in stock, sizes, etc."),
14  *   name = "twitter:label1",
15  *   group = "twitter_cards",
16  *   weight = 500,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsLabel1 extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }