Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / Generator.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * The basic "Generator" meta tag.
7  *
8  * @MetatagTag(
9  *   id = "generator",
10  *   label = @Translation("Generator"),
11  *   description = @Translation("Describes the name and version number of the software or publishing tool used to create the page."),
12  *   name = "generator",
13  *   group = "advanced",
14  *   weight = 4,
15  *   type = "string",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class Generator extends MetaNameBase {
21   // Nothing here yet. Just a placeholder class for a plugin.
22 }