Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / AppleMobileWebAppStatusBarStyle.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\AppleMobileWebAppStatusBarStyle.
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 status bar style for Apple mobile metatag.
13  *
14  * @MetatagTag(
15  *   id = "apple_mobile_web_app_status_bar_style",
16  *   label = @Translation("Status bar color"),
17  *   description = @Translation("Requires the 'Web app capable' meta tag to be set to 'yes'. May be set to 'default', 'black', or 'black-translucent'."),
18  *   name = "apple-mobile-web-app-status-bar-style",
19  *   group = "apple_mobile",
20  *   weight = 88,
21  *   type = "string",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class AppleMobileWebAppStatusBarStyle extends MetaNameBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }