Type.php 752 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\metatag_dc\Plugin\metatag\Tag;
  3. use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
  4. /**
  5. * The Dublin Core "Type" meta tag.
  6. *
  7. * @MetatagTag(
  8. * id = "dcterms_type",
  9. * label = @Translation("Type"),
  10. * 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."),
  11. * name = "dcterms.type",
  12. * group = "dublin_core",
  13. * weight = 8,
  14. * type = "label",
  15. * secure = FALSE,
  16. * multiple = FALSE
  17. * )
  18. */
  19. class Type extends MetaNameBase {
  20. // Nothing here yet. Just a placeholder class for a plugin.
  21. }