8b2725849d087ec41c61e3fbc69d7173479cfc5e
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgImageUrl.php
1 <?php
2
3 namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;
4
5 use \Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * Provides a plugin for the 'og:image:url' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_image_url",
12  *   label = @Translation("Image URL"),
13  *   description = @Translation("A alternative version of og:image and has exactly the same requirements; only one needs to be used."),
14  *   name = "og:image:url",
15  *   group = "open_graph",
16  *   weight = 10,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = TRUE
20  * )
21  */
22 class OgImageUrl extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }