Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationTask.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\MsapplicationTask.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
10
11 /**
12  * Provides a plugin for the 'msapplication:task' meta tag.
13  *
14  * @MetatagTag(
15  *   id = "msapplication_task",
16  *   label = @Translation("MSApplication - Task"),
17  *   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."),
18  *   name = "msapplication-task",
19  *   group = "windows_mobile",
20  *   weight = 106,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class MsapplicationTask extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }