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 / Cleartype.php
1 <?php
2
3 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaHttpEquivBase;
6
7 /**
8  * The Cleartype for Mobile metatag.
9  *
10  * @MetatagTag(
11  *   id = "cleartype",
12  *   label = @Translation("Cleartype"),
13  *   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."),
14  *   name = "cleartype",
15  *   group = "mobile",
16  *   weight = 85,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Cleartype extends MetaHttpEquivBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }