Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / XUaCompatible.php
diff --git a/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/XUaCompatible.php b/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Tag/XUaCompatible.php
new file mode 100644 (file)
index 0000000..54c6d7e
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * @file
+ * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\XUaCompatible.
+ */
+
+namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
+
+use \Drupal\metatag\Plugin\metatag\Tag\MetaHttpEquivBase;
+
+/**
+ * Provides a plugin for the 'x:ua:compatible' meta tag.
+ *
+ * @MetatagTag(
+ *   id = "x_ua_compatible",
+ *   label = @Translation("X-UA-Compatible"),
+ *   description = @Translation("Indicates to IE which rendering engine should be used for the current page."),
+ *   name = "x-ua-compatible",
+ *   group = "windows_mobile",
+ *   weight = 93,
+ *   type = "string",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class XUaCompatible extends MetaHttpEquivBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}