Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Group / Mobile.php
diff --git a/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Group/Mobile.php b/web/modules/contrib/metatag/metatag_mobile/src/Plugin/metatag/Group/Mobile.php
new file mode 100644 (file)
index 0000000..17effb0
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace Drupal\metatag_mobile\Plugin\metatag\Group;
+
+use \Drupal\metatag\Plugin\metatag\Group\GroupBase;
+
+/**
+ * Provides a plugin for the 'Mobile & UI Adjustments' meta tag group.
+ *
+ * @MetatagGroup(
+ *   id = "mobile",
+ *   label = @Translation("Mobile & UI Adjustments"),
+ *   description = @Translation("Meta tags used to control the mobile browser experience. Some of these meta tags have been replaced by newer mobile browsers. These meta tags usually only need to be set globally, rather than per-page."),
+ *   weight = 80
+ * )
+ */
+class Mobile extends GroupBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}