a411162caf614d8f859772e7600df2ce2924727a
[yaffs-website] / web / modules / contrib / metatag / metatag_google_cse / src / Plugin / metatag / Tag / Audience.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 'audience' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "audience",
12  *   label = @Translation("Content audience"),
13  *   description = @Translation("The content audience, e.g. ""all""."),
14  *   name = "audience",
15  *   group = "google_cse",
16  *   weight = 0,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Audience extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }