Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MobileOptimized.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\MobileOptimized.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
10
11 /**
12  * The Mobile optimized for Mobile metatag.
13  *
14  * @MetatagTag(
15  *   id = "mobileoptimized",
16  *   label = @Translation("Mobile Optimized"),
17  *   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."),
18  *   name = "MobileOptimized",
19  *   group = "mobile",
20  *   weight = 82,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = TRUE
24  * )
25  */
26 class MobileOptimized extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }