aa739140184eed8055b1778c909633560145def4
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationNotification.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:notification' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "msapplication_notification",
12  *   label = @Translation("MSApplication - Notification"),
13  *   description = @Translation("A semi-colon -separated string containing 'polling-uri=' (required), 'polling-uri2=', 'polling-uri3=', 'polling-uri4=' and 'polling-uri5=' to indicate the URLs for notifications. May also contain a 'frequency=' value to specify how often (in minutes) the URLs will be polled; limited to 30, 60, 360, 720 or 1440 (default). May also contain the value 'cycle=' to control the notifications cycle."),
14  *   name = "msapplication-notification",
15  *   group = "windows_mobile",
16  *   weight = 100,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class MsapplicationNotification extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }