5ba64b4e63f4dacf9320b27ceeb9e0628596d4dc
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationBadge.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\MsapplicationBadge.
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:badge' meta tag.
13  *
14  * @MetatagTag(
15  *   id = "msapplication_badge",
16  *   label = @Translation("MSApplication - Badge"),
17  *   description = @Translation("A semi-colon -separated string that must contain the 'polling-uri=' value with the full URL to a <a href='http://go.microsoft.com/fwlink/p/?LinkID=314019'>Badge Schema XML file</a>. May also contain 'frequency=' value set to either 30, 60, 360, 720 or 1440 (default) which specifies (in minutes) how often the URL should be polled."),
18  *   name = "msapplication-badge",
19  *   group = "windows_mobile",
20  *   weight = 97,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class MsapplicationBadge extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }