6d4b462df9bb1b7e924c902c6ae489863316efbd
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / src / Plugin / metatag / Tag / DateAccepted.php
1 <?php
2
3 namespace Drupal\metatag_dc_advanced\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * The Dublin Core "dateAccepted" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "dcterms_date_accepted",
12  *   label = @Translation("Date Accepted"),
13  *   description = @Translation("Date of acceptance of the resource. Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal)."),
14  *   name = "dcterms.dateAccepted",
15  *   group = "dublin_core_advanced",
16  *   weight = 6,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class DateAccepted extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }