af57e20aef37ab7140f89e984b38fc8f3762bc61
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsData1.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:data1' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_data1",
12  *   label = @Translation("Data 1"),
13  *   description = @Translation("This field expects a string, and allows you to specify the types of data you want to offer (price, country, etc.)."),
14  *   name = "twitter:data1",
15  *   group = "twitter_cards",
16  *   weight = 501,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsData1 extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }