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