Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / Cleartype.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\Cleartype.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use Drupal\metatag\Plugin\metatag\Tag\MetaHttpEquivBase;
10
11 /**
12  * The Cleartype for Mobile metatag.
13  *
14  * @MetatagTag(
15  *   id = "cleartype",
16  *   label = @Translation("Cleartype"),
17  *   description = @Translation("A legacy meta tag for older versions of Internet Explorer on Windows, use the value 'on' to enable it; this tag is ignored by all other browsers."),
18  *   name = "cleartype",
19  *   group = "mobile",
20  *   weight = 85,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class Cleartype extends MetaHttpEquivBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }