4113faacb5674d992a22987549362e050cc10e5b
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgLocaleAlternative.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:locale:alternate' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_locale_alternative",
12  *   label = @Translation("Alternative locales"),
13  *   description = @Translation("Other locales this content is available in, must be in the format language_TERRITORY, e.g. 'fr_FR'."),
14  *   name = "og:locale:alternate",
15  *   group = "open_graph",
16  *   weight = 27,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = TRUE
20  * )
21  */
22 class OgLocaleAlternative extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }