5840f7f72412dcc92069a3ded2848c9d0e66e814
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsImageWidth.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 width metatag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_image_width",
12  *   label = @Translation("Image width"),
13  *   description = @Translation("The width of the image being linked to, in pixels."),
14  *   name = "twitter:image:width",
15  *   group = "twitter_cards",
16  *   weight = 7,
17  *   type = "integer",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsImageWidth extends MetaNameBase {
23 }