Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_verification / src / Plugin / metatag / Tag / Pinterest.php
diff --git a/web/modules/contrib/metatag/metatag_verification/src/Plugin/metatag/Tag/Pinterest.php b/web/modules/contrib/metatag/metatag_verification/src/Plugin/metatag/Tag/Pinterest.php
new file mode 100644 (file)
index 0000000..4c6512f
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+
+namespace Drupal\metatag_verification\Plugin\metatag\Tag;
+
+use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
+
+/**
+ * Provides a plugin for the 'p:domain_verify' meta tag.
+ *
+ * @MetatagTag(
+ *   id = "pinterest",
+ *   label = @Translation("Pinterest"),
+ *   description = @Translation("A string provided by <a href=':pinterest'>Pinterest</a>, full details are available from the <a href=':verify_url'>Pinterest online help</a>.", arguments = { ":pinterest" = "https://www.pinterest.com/", ":verify_url" = "https://help.pinterest.com/en/articles/verify-your-website" }),
+ *   name = "p:domain_verify",
+ *   group = "site_verification",
+ *   weight = 6,
+ *   type = "label",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class Pinterest extends MetaNameBase {
+}