Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_dc / src / Plugin / metatag / Tag / Coverage.php
diff --git a/web/modules/contrib/metatag/metatag_dc/src/Plugin/metatag/Tag/Coverage.php b/web/modules/contrib/metatag/metatag_dc/src/Plugin/metatag/Tag/Coverage.php
new file mode 100644 (file)
index 0000000..a0302c8
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\metatag_dc\Plugin\metatag\Tag;
+
+use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
+
+/**
+ * The Dublin Core "Coverage" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "dcterms_coverage",
+ *   label = @Translation("Coverage"),
+ *   description = @Translation("The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges."),
+ *   name = "dcterms.coverage",
+ *   group = "dublin_core",
+ *   weight = 14,
+ *   type = "label",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class Coverage extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}