47bb0b2456b35f409f689552e2625979e66fdd68
[yaffs-website] / TwitterCardsImageAlt.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  * The Twitter Cards image alternative text metatag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_image_alt",
12  *   label = @Translation("Image alternative text"),
13  *   description = @Translation("The alternative text of the image being linked to. Limited to 420 characters."),
14  *   name = "twitter:image:alt",
15  *   group = "twitter_cards",
16  *   weight = 7,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsImageAlt extends MetaNameBase {
23 }