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