Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_facebook / src / Plugin / metatag / Tag / FbAdmins.php
diff --git a/web/modules/contrib/metatag/metatag_facebook/src/Plugin/metatag/Tag/FbAdmins.php b/web/modules/contrib/metatag/metatag_facebook/src/Plugin/metatag/Tag/FbAdmins.php
new file mode 100644 (file)
index 0000000..34f7d4f
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\metatag_facebook\Plugin\metatag\Tag;
+
+use \Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
+
+/**
+ * The Facebook "fb:admins" meta tag.
+ *
+ * @MetatagTag(
+ *   id = "fb_admins",
+ *   label = @Translation("Facebook Admins"),
+ *   description = @Translation("A comma-separated list of Facebook user IDs of people who are considered administrators or moderators of this page."),
+ *   name = "fb:admins",
+ *   group = "facebook",
+ *   weight = 1,
+ *   type = "string",
+ *   secure = FALSE,
+ *   multiple = FALSE
+ * )
+ */
+class FbAdmins extends MetaPropertyBase {
+  // Nothing here yet. Just a placeholder class for a plugin.
+}