c59e04292a462330454fc95dbc81dbe3c1cf5d10
[yaffs-website] / web / modules / contrib / metatag / metatag_pinterest / src / Plugin / metatag / Tag / PinterestMedia.php
1 <?php
2
3 namespace Drupal\metatag_pinterest\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * Provides a plugin for the 'pin:media' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "pinterest_media",
12  *   label = @Translation("Media"),
13  *   description = @Translation("The URL of media which should represent the content."),
14  *   name = "pin:media",
15  *   group = "pinterest",
16  *   weight = 6,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class PinterestMedia extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }