Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / Keywords.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * The basic "Keywords" meta tag.
7  *
8  * @MetatagTag(
9  *   id = "keywords",
10  *   label = @Translation("Keywords"),
11  *   description = @Translation("A comma-separated list of keywords about the page. This meta tag is <em>no longer</em> supported by most search engines."),
12  *   name = "keywords",
13  *   group = "basic",
14  *   weight = 4,
15  *   type = "label",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class Keywords extends MetaNameBase {
21   // Nothing here yet. Just a placeholder class for a plugin.
22 }