a98e9da0010c9695686238d4eaa5bacdb606ae45
[yaffs-website] / web / modules / contrib / metatag / metatag_dc / src / Plugin / metatag / Tag / Rights.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 "Rights" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "dcterms_rights",
12  *   label = @Translation("Rights"),
13  *   description = @Translation("Information about rights held in and over the resource. Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights."),
14  *   name = "dcterms.rights",
15  *   group = "dublin_core",
16  *   weight = 15,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Rights extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }