Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / src / Plugin / metatag / Tag / AccessRights.php
diff --git a/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Tag/AccessRights.php b/web/modules/contrib/metatag/metatag_dc_advanced/src/Plugin/metatag/Tag/AccessRights.php
new file mode 100644 (file)
index 0000000..0dde265
--- /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 "accessRights" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "dcterms_access_rights",
+ *   label = @Translation("Access Rights"),
+ *   description = @Translation("Information about who can access the resource or an indication of its security status. Access Rights may include information regarding access or restrictions based on privacy, security, or other policies."),
+ *   name = "dcterms.accessRights",
+ *   group = "dublin_core_advanced",
+ *   weight = 6,
+ *   type = "label",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class AccessRights extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}