Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / src / Plugin / metatag / Tag / ConformsTo.php
diff --git a/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Tag/ConformsTo.php b/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Tag/ConformsTo.php
new file mode 100644 (file)
index 0000000..4417c27
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\metatag_dc_advanced\Plugin\metatag\Tag;
+
+use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
+
+/**
+ * The Dublin Core "conformsTo" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "dcterms_conforms_to",
+ *   label = @Translation("Conforms To"),
+ *   description = @Translation("An established standard to which the described resource conforms."),
+ *   name = "dcterms.conformsTo",
+ *   group = "dublin_core_advanced",
+ *   weight = 6,
+ *   type = "label",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class ConformsTo extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}