Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / AppleMobileWebAppStatusBarStyle.php
diff --git a/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/AppleMobileWebAppStatusBarStyle.php b/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/AppleMobileWebAppStatusBarStyle.php
new file mode 100644 (file)
index 0000000..b05263f
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * @file
+ * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\AppleMobileWebAppStatusBarStyle.
+ */
+
+namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
+
+use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
+
+/**
+ * The Web App status bar style for Apple mobile metatag.
+ *
+ * @MetatagTag(
+ *   id = "apple_mobile_web_app_status_bar_style",
+ *   label = @Translation("Status bar color"),
+ *   description = @Translation("Requires the 'Web app capable' meta tag to be set to 'yes'. May be set to 'default', 'black', or 'black-translucent'."),
+ *   name = "apple-mobile-web-app-status-bar-style",
+ *   group = "apple_mobile",
+ *   weight = 88,
+ *   type = "string",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class AppleMobileWebAppStatusBarStyle extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}