Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_google_plus / src / Plugin / metatag / Tag / Publisher.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  * Provides a plugin for the 'publisher' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "google_plus_publisher",
12  *   label = @Translation("Publisher URL"),
13  *   description = @Translation("Used by some search engines to confirm publication of the content on a page. Should be the full URL for the publication's Google+ profile page."),
14  *   name = "publisher",
15  *   group = "google_plus",
16  *   weight = 5,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Publisher extends LinkRelBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }