243676200f92417f6795a6b1392501215cb8cfba
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / AppleItunesApp.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\AppleItunesApp.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
10
11 /**
12  * The Itunes App for Apple mobile metatag.
13  *
14  * @MetatagTag(
15  *   id = "apple_itunes_app",
16  *   label = @Translation("iTunes App details"),
17  *   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."),
18  *   name = "apple-itunes-app",
19  *   group = "apple_mobile",
20  *   weight = 86,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class AppleItunesApp extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }