d89da65d938841b20a17cf4e9a8b8a1c91389073
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationNotification.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\MsapplicationNotification.
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:notification' meta tag.
13  *
14  * @MetatagTag(
15  *   id = "msapplication_notification",
16  *   label = @Translation("MSApplication - Notification"),
17  *   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."),
18  *   name = "msapplication-notification",
19  *   group = "windows_mobile",
20  *   weight = 100,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class MsapplicationNotification extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }