Version 1
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / Keywords.php
diff --git a/web/modules/contrib/metatag/src/Plugin/metatag/Tag/Keywords.php b/web/modules/contrib/metatag/src/Plugin/metatag/Tag/Keywords.php
new file mode 100644 (file)
index 0000000..e0cd332
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+namespace Drupal\metatag\Plugin\metatag\Tag;
+
+/**
+ * The basic "Keywords" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "keywords",
+ *   label = @Translation("Keywords"),
+ *   description = @Translation("A comma-separated list of keywords about the page. This meta tag is <em>not</em> supported by most search engines anymore."),
+ *   name = "keywords",
+ *   group = "basic",
+ *   weight = 4,
+ *   type = "label",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class Keywords extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}