Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / src / Plugin / metatag / Group / DublinCoreAdvanced.php
diff --git a/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Group/DublinCoreAdvanced.php b/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Group/DublinCoreAdvanced.php
new file mode 100644 (file)
index 0000000..62afc6e
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace Drupal\metatag_dc_advanced\Plugin\metatag\Group;
+
+use \Drupal\metatag\Plugin\metatag\Group\GroupBase;
+
+/**
+ * Provides a plugin for the 'Dublin Core Additional Tags' meta tag group.
+ *
+ * @MetatagGroup(
+ *   id = "dublin_core_advanced",
+ *   label = @Translation("Dublin Core Additional Tags"),
+ *   description = @Translation("These tags are not part of the Metadata Element Set but may be useful for certain scenarios."),
+ *   weight = 0,
+ * )
+ */
+class DublinCoreAdvanced extends GroupBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}