1c857f25798e3e9a96c44de0387e5e3195b997c3
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationTilecolor.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\MsapplicationTilecolor.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
10
11 /**
12  * Provides a plugin for the 'msapplication:tilecolor' meta tag.
13  *
14  * @MetatagTag(
15  *   id = "msapplication_tilecolor",
16  *   label = @Translation("MSApplication - Tile color"),
17  *   description = @Translation("The HTML color to use as the background color for the live tile."),
18  *   name = "msapplication-tilecolor",
19  *   group = "windows_mobile",
20  *   weight = 108,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class MsapplicationTilecolor extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }