Version 1
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / GeoPlacename.php
diff --git a/web/modules/contrib/metatag/src/Plugin/metatag/Tag/GeoPlacename.php b/web/modules/contrib/metatag/src/Plugin/metatag/Tag/GeoPlacename.php
new file mode 100644 (file)
index 0000000..58de692
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\metatag\Plugin\metatag\Tag;
+
+use \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
+
+/**
+ * Provides a plugin for the 'geo.placename' meta tag.
+ *
+ * @MetatagTag(
+ *   id = "geo_placename",
+ *   label = @Translation("Geographical place name"),
+ *   description = @Translation("A location's formal name."),
+ *   name = "geo.placename",
+ *   group = "advanced",
+ *   weight = 0,
+ *   type = "label",
+ *   secure = 0,
+ *   multiple = FALSE
+ * )
+ */
+class GeoPlacename extends MetaNameBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}