Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / BookTag.php
diff --git a/web/modules/contrib/metatag/metatag_open_graph/src/Plugin/metatag/Tag/BookTag.php b/web/modules/contrib/metatag/metatag_open_graph/src/Plugin/metatag/Tag/BookTag.php
new file mode 100644 (file)
index 0000000..1a60cdb
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;
+
+use \Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
+
+/**
+ * The Open Graph "Book tag" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "book_tag",
+ *   label = @Translation("Book tag(s)"),
+ *   description = @Translation("Appropriate keywords for this content."),
+ *   name = "book:tag",
+ *   group = "open_graph",
+ *   weight = 38,
+ *   type = "label",
+ *   secure = FALSE,
+ *   multiple = TRUE
+ * )
+ */
+class BookTag extends MetaPropertyBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}