Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / ContentLanguage.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * The advanced "Content Language" meta tag.
7  *
8  * @MetatagTag(
9  *   id = "content_language",
10  *   label = @Translation("Content Language"),
11  *   description = @Translation("Used to define this page's language code. May be the two letter language code, e.g. ""de"" for German, or the two letter code with a dash and the two letter ISO country code, e.g. ""de-AT"" for German in Austria. Still used by Bing."),
12  *   name = "content-language",
13  *   group = "advanced",
14  *   weight = 1,
15  *   type = "string",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class ContentLanguage extends MetaHttpEquivBase {
21   // Nothing here yet. Just a placeholder class for a plugin.
22 }