1e68a5786a12c95068e2968c229ff662892e130f
[yaffs-website] / web / modules / contrib / metatag / metatag_google_cse / src / Plugin / metatag / Tag / GoogleRating.php
1 <?php
2
3 namespace Drupal\metatag_google_cse\Plugin\metatag\Tag;
4
5 use \Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * Provides a plugin for the 'google_rating' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "google_rating",
12  *   label = @Translation("Content rating"),
13  *   description = @Translation("Works only with numeric values."),
14  *   name = "rating",
15  *   group = "google_cse",
16  *   weight = 0,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class GoogleRating extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }