036d6bc397174783915311f288b041c39663b2bf
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / ArticleAuthor.php
1 <?php
2
3 namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;
4
5 use \Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * The Open Graph "Article author" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "article_author",
12  *   label = @Translation("Article author"),
13  *   description = @Translation("Links an article to an author's Facebook profile, should be either URLs to the author's profile page or their Facebook profile IDs."),
14  *   name = "article:author",
15  *   group = "open_graph",
16  *   weight = 28,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = TRUE
20  * )
21  */
22 class ArticleAuthor extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }