9fb24d70ff428a926f3b24e61264f040320110d9
[yaffs-website] / web / modules / contrib / metatag / metatag_google_plus / src / Plugin / metatag / Tag / Image.php
1 <?php
2
3 namespace Drupal\metatag_google_plus\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaItempropBase;
6
7 /**
8  * The GooglePlus 'image' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "google_plus_image",
12  *   label = @Translation("Image"),
13  *   description = @Translation("The URL of an image which should represent the content. For best results use an image that is at least 1200 x 630 pixels in size, but at least 600 x 316 pixels is a recommended minimum. Supports PNG, JPEG and GIF formats."),
14  *   name = "itemprop:image",
15  *   group = "google_plus",
16  *   weight = 3,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = TRUE
20  * )
21  */
22 class Image extends MetaItempropBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }