Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / ThemeColor.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\ThemeColor.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
10
11 /**
12  * The Theme color for Mobile metatag.
13  *
14  * @MetatagTag(
15  *   id = "theme_color",
16  *   label = @Translation("Theme Color"),
17  *   description = @Translation("A color in hexidecimal format, e.g. '#0000ff' for blue; must include the '#' symbol. Used by some browsers to control the background color of the toolbar, the color used with an icon, etc."),
18  *   name = "theme-color",
19  *   group = "mobile",
20  *   weight = 81,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class ThemeColor extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }