Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / MsapplicationTilecolor.php
diff --git a/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/MsapplicationTilecolor.php b/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/MsapplicationTilecolor.php
new file mode 100644 (file)
index 0000000..1c857f2
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * @file
+ * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\MsapplicationTilecolor.
+ */
+
+namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
+
+use \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
+
+/**
+ * Provides a plugin for the 'msapplication:tilecolor' meta tag.
+ *
+ * @MetatagTag(
+ *   id = "msapplication_tilecolor",
+ *   label = @Translation("MSApplication - Tile color"),
+ *   description = @Translation("The HTML color to use as the background color for the live tile."),
+ *   name = "msapplication-tilecolor",
+ *   group = "windows_mobile",
+ *   weight = 108,
+ *   type = "string",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class MsapplicationTilecolor extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}