Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / src / Plugin / metatag / Tag / IsFormatOf.php
diff --git a/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Tag/IsFormatOf.php b/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Tag/IsFormatOf.php
new file mode 100644 (file)
index 0000000..426c5dc
--- /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 "isFormatOf" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "dcterms_is_format_of",
+ *   label = @Translation("Is Format Of"),
+ *   description = @Translation("A related resource that is substantially the same as the described resource, but in another format."),
+ *   name = "dcterms.isFormatOf",
+ *   group = "dublin_core_advanced",
+ *   weight = 6,
+ *   type = "label",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class IsFormatOf extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}