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