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