Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Group / OpenGraph.php
diff --git a/web/modules/contrib/metatag/metatag_open_graph/src/Plugin/metatag/Group/OpenGraph.php b/web/modules/contrib/metatag/metatag_open_graph/src/Plugin/metatag/Group/OpenGraph.php
new file mode 100644 (file)
index 0000000..3e5c8ac
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace Drupal\metatag_open_graph\Plugin\metatag\Group;
+
+use Drupal\metatag\Plugin\metatag\Group\GroupBase;
+
+/**
+ * The open graph group.
+ *
+ * @MetatagGroup(
+ *   id = "open_graph",
+ *   label = @Translation("Open Graph"),
+ *   description = @Translation("The <a href='http://ogp.me/'>Open Graph meta tags</a> are used control how Facebook, Pinterest, LinkedIn and other social networking sites interpret the site's content."),
+ *   weight = 3
+ * )
+ */
+class OpenGraph extends GroupBase {
+  // Inherits everything from Base.
+}