Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Group / TwitterCards.php
1 <?php
2
3 namespace Drupal\metatag_twitter_cards\Plugin\metatag\Group;
4
5 use Drupal\metatag\Plugin\metatag\Group\GroupBase;
6
7 /**
8  * The TwitterCards group.
9  *
10  * @MetatagGroup(
11  *   id = "twitter_cards",
12  *   label = @Translation("Twitter Cards"),
13  *   description = @Translation("A set of meta tags specially for controlling the summaries displayed when content is shared on <a href='https://twitter.com/'>Twitter</a>."),
14  *   weight = 4
15  * )
16  */
17 class TwitterCards extends GroupBase {
18   // Inherits everything from Base.
19 }