b7bfdd730d32292292b8aa5b4093fff1d3261dd6
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / AppleItunesApp.php
1 <?php
2
3 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * The Itunes App for Apple mobile metatag.
9  *
10  * @MetatagTag(
11  *   id = "apple_itunes_app",
12  *   label = @Translation("iTunes App details"),
13  *   description = @Translation("This informs iOS devices to display a banner to a specific app. If used, it must provide the 'app-id' value, the 'affiliate-data' and 'app-argument' values are optional."),
14  *   name = "apple-itunes-app",
15  *   group = "apple_mobile",
16  *   weight = 86,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class AppleItunesApp extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }