346a197a2eec956c6372243ee9d64963748006b2
[yaffs-website] / web / modules / contrib / metatag / metatag_pinterest / src / Plugin / metatag / Tag / PinterestId.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:id' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "pinterest_id",
12  *   label = @Translation("Id"),
13  *   description = @Translation("The Canonical Pinterest object to pin."),
14  *   name = "pin:id",
15  *   group = "pinterest",
16  *   weight = 5,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class PinterestId extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }