e767f30cdb5babc0d3a85fd4c84a3bfbbddd7b19
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgDeterminer.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:determiner' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_determiner",
12  *   label = @Translation("Determiner"),
13  *   description = @Translation("The word that appears before the content's title in a sentence. The default ignores this value, the 'Automatic' value should be sufficient if this is actually needed."),
14  *   name = "og:determiner",
15  *   group = "open_graph",
16  *   weight = 0,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class OgDeterminer extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }