ebd16b666128af6d00f2b8f291ee83ea1ab7f946
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsLabel2.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:label2' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_label2",
12  *   label = @Translation("Label 2"),
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:label2",
15  *   group = "twitter_cards",
16  *   weight = 502,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsLabel2 extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }