3e6fc4fa32ed73e36c69af47030dbbb1245a61a9
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationConfig.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\MsapplicationConfig.
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:config' meta tag.
13  *
14  * @MetatagTag(
15  *   id = "msapplication_config",
16  *   label = @Translation("MSApplication - Config"),
17  *   description = @Translation("Should contain the full URL to a <a href='https://msdn.microsoft.com/en-us/library/dn320426(v=vs.85).aspx'>Browser configuration schema</a> file that further controls tile customizations."),
18  *   name = "msapplication-config",
19  *   group = "windows_mobile",
20  *   weight = 98,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class MsapplicationConfig extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }