Version 1
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / Generator.php
diff --git a/web/modules/contrib/metatag/src/Plugin/metatag/Tag/Generator.php b/web/modules/contrib/metatag/src/Plugin/metatag/Tag/Generator.php
new file mode 100644 (file)
index 0000000..23f19bb
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+namespace Drupal\metatag\Plugin\metatag\Tag;
+
+/**
+ * The basic "Generator" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "generator",
+ *   label = @Translation("Generator"),
+ *   description = @Translation("Describes the name and version number of the software or publishing tool used to create the page."),
+ *   name = "generator",
+ *   group = "advanced",
+ *   weight = 4,
+ *   type = "string",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class Generator extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}