Created.php 581 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\metatag_dc_advanced\Plugin\metatag\Tag;
  3. use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
  4. /**
  5. * The Dublin Core "created" meta tag.
  6. *
  7. * @MetatagTag(
  8. * id = "dcterms_created",
  9. * label = @Translation("Date Created"),
  10. * description = @Translation("Date of creation of the resource."),
  11. * name = "dcterms.created",
  12. * group = "dublin_core_advanced",
  13. * weight = 6,
  14. * type = "label",
  15. * secure = FALSE,
  16. * multiple = FALSE
  17. * )
  18. */
  19. class Created extends MetaNameBase {
  20. // Nothing here yet. Just a placeholder class for a plugin.
  21. }