c6a3b7fc15e17e015e2eb01cc0cce856d0f8eea9
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / AppleMobileWebAppCapable.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\AppleMobileWebAppCapable.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
10
11 /**
12  * The Web App Capable for Apple mobile metatag.
13  *
14  * @MetatagTag(
15  *   id = "apple_mobile_web_app_capable",
16  *   label = @Translation("Web app capable?"),
17  *   description = @Translation("If set to 'yes', the application will run in full-screen mode; the default behavior is to use Safari to display web content."),
18  *   name = "apple-mobile-web-app-capable",
19  *   group = "apple_mobile",
20  *   weight = 87,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class AppleMobileWebAppCapable extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }