f81feaad1d5284b1b2ce91c6f5efff9a7c5d9043
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgLocale.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' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_locale",
12  *   label = @Translation("Locale"),
13  *   description = @Translation("The locale these tags are marked up in, must be in the format language_TERRITORY. Default is 'en_US'."),
14  *   name = "og:locale",
15  *   group = "open_graph",
16  *   weight = 26,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class OgLocale extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }