e34846a4c80245d6ca36c1d0dfd04d8ea74bb6fe
[yaffs-website] / web / modules / contrib / metatag / metatag_dc / src / Plugin / metatag / Tag / Type.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 "Type" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "dcterms_type",
12  *   label = @Translation("Type"),
13  *   description = @Translation("The nature or genre of the resource. Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element."),
14  *   name = "dcterms.type",
15  *   group = "dublin_core",
16  *   weight = 8,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Type extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }