967e2f490654aed093d54e21ac13e0ac157283ee
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationWindow.php
1 <?php
2
3 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * Provides a plugin for the 'msapplication:window' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "msapplication_window",
12  *   label = @Translation("MSApplication - Window"),
13  *   description = @Translation("A semi-colon -separated value that controls the dimensions of the initial window. Should contain the values 'width=' and 'height=' to control the width and height respectively."),
14  *   name = "msapplication-window",
15  *   group = "windows_mobile",
16  *   weight = 111,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class MsapplicationWindow extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }