426c5dc6a3eb47dbd5117b993d1711e67da4f4f2
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / src / Plugin / metatag / Tag / IsFormatOf.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 "isFormatOf" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "dcterms_is_format_of",
12  *   label = @Translation("Is Format Of"),
13  *   description = @Translation("A related resource that is substantially the same as the described resource, but in another format."),
14  *   name = "dcterms.isFormatOf",
15  *   group = "dublin_core_advanced",
16  *   weight = 6,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class IsFormatOf extends MetaNameBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }