353c400876caabb248de852fd0df7e2d369d4dc9
[yaffs-website] / web / modules / contrib / metatag / metatag_app_links / src / Plugin / metatag / Tag / AlWindowsUniversalAppId.php
1 <?php
2
3 namespace Drupal\metatag_app_links\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * The AppLinks Windows Universal app ID meta tag.
9  *
10  * @MetatagTag(
11  *   id = "al_windows_universal_app_id",
12  *   label = @Translation("Windows Universal app ID"),
13  *   description = @Translation("The app ID for the app store."),
14  *   name = "al:windows_universal:app_id",
15  *   group = "app_links",
16  *   weight = 1,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class AlWindowsUniversalAppId extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }