994c7e2e88a730b7378a40f1db87035055cd4f01
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationTileimage.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:tileimage' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "msapplication_tileimage",
12  *   label = @Translation("MSApplication - Tile image"),
13  *   description = @Translation("The URL to an image to use as the background for the live tile."),
14  *   name = "msapplication-tileimage",
15  *   group = "windows_mobile",
16  *   weight = 109,
17  *   type = "image",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class MsapplicationTileimage extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }