Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / src / Plugin / metatag / Tag / Provenance.php
diff --git a/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Tag/Provenance.php b/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Tag/Provenance.php
new file mode 100644 (file)
index 0000000..a26c980
--- /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 "provenance" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "dcterms_provenance",
+ *   label = @Translation("Provenance"),
+ *   description = @Translation("A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. The statement may include a description of any changes successive custodians made to the resource."),
+ *   name = "dcterms.provenance",
+ *   group = "dublin_core_advanced",
+ *   weight = 6,
+ *   type = "label",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class Provenance extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}