34f7d4f31cbfd88f6c709f790865d06c467a2055
[yaffs-website] / web / modules / contrib / metatag / metatag_facebook / src / Plugin / metatag / Tag / FbAdmins.php
1 <?php
2
3 namespace Drupal\metatag_facebook\Plugin\metatag\Tag;
4
5 use \Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * The Facebook "fb:admins" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "fb_admins",
12  *   label = @Translation("Facebook Admins"),
13  *   description = @Translation("A comma-separated list of Facebook user IDs of people who are considered administrators or moderators of this page."),
14  *   name = "fb:admins",
15  *   group = "facebook",
16  *   weight = 1,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class FbAdmins extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }