2cdcb9c686f216b5942a4f4d212a5657382d540d
[yaffs-website] / web / modules / contrib / metatag / metatag_dc / src / Plugin / metatag / Tag / Subject.php
1 <?php
2
3 namespace Drupal\metatag_dc\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * The Dublin Core "Subject" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "dcterms_subject",
12  *   label = @Translation("Subject"),
13  *   description = @Translation("The topic of the resource. Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element."),
14  *   name = "dcterms.subject",
15  *   group = "dublin_core",
16  *   weight = 3,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Subject extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }