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