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 / MobileOptimized.php
1 <?php
2
3 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * The Mobile optimized for Mobile metatag.
9  *
10  * @MetatagTag(
11  *   id = "mobileoptimized",
12  *   label = @Translation("Mobile Optimized"),
13  *   description = @Translation("Using the value 'width' tells certain mobile Internet Explorer browsers to display as-is, without being resized. Alternatively a numerical width may be used to indicate the desired page width the page should be rendered in: '240' is the suggested default, '176' for older browsers or '480' for newer devices with high DPI screens."),
14  *   name = "MobileOptimized",
15  *   group = "mobile",
16  *   weight = 82,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = TRUE
20  * )
21  */
22 class MobileOptimized extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }