d8a98eed1dd3b6fa5d6324446648442bf9571321
[yaffs-website] / web / modules / contrib / metatag / metatag_google_plus / src / Plugin / metatag / Tag / Author.php
1 <?php
2
3 namespace Drupal\metatag_google_plus\Plugin\metatag\Tag;
4
5 use \Drupal\metatag\Plugin\metatag\Tag\LinkRelBase;
6
7 /**
8  * The basic "Author" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "google_plus_author",
12  *   label = @Translation("Author"),
13  *   description = @Translation("Used by some search engines to confirm authorship of the content on a page. Should be either the full URL for the author's Google+ profile page or a local page with information about the author."),
14  *   name = "author",
15  *   group = "google_plus",
16  *   weight = 4,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Author extends LinkRelBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }