1ca92be5dd1306ede4f2f7d69f2082b4e61a19e8
[yaffs-website] / web / modules / contrib / metatag / metatag_pinterest / src / Plugin / metatag / Tag / PinterestUrl.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:url' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "pinterest_url",
12  *   label = @Translation("URL"),
13  *   description = @Translation("The URL which should represent the content."),
14  *   name = "pin:url",
15  *   group = "pinterest",
16  *   weight = 7,
17  *   type = "uri",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class PinterestUrl extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }