6e4e4d864bf509637c6be101940d2b64359f83c3
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationTask.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:task' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "msapplication_task",
12  *   label = @Translation("MSApplication - Task"),
13  *   description = @Translation("A semi-colon -separated string defining the 'jump' list task. Should contain the 'name=' value to specify the task's name, the 'action-uri=' value to set the URL to load when the jump list is clicked, the 'icon-uri=' value to set the URL to an icon file to be displayed, and 'window-type=' set to either 'tab' (default), 'self' or 'window' to control how the link opens in the browser."),
14  *   name = "msapplication-task",
15  *   group = "windows_mobile",
16  *   weight = 106,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class MsapplicationTask extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }