ffe9e825badd9460388c7a585802e945affb809b
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / Viewport.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\Viewport.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
10
11 /**
12  * The Viewport for Mobile metatag.
13  *
14  * @MetatagTag(
15  *   id = "viewport",
16  *   label = @Translation("Viewport"),
17  *   description = @Translation("Used by most contemporary browsers to control the display for mobile browsers. Please read a guide on responsive web design for details of what values to use."),
18  *   name = "viewport",
19  *   group = "mobile",
20  *   weight = 84,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class Viewport extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }