Creator.php 724 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 "Creator" meta tag.
  6. *
  7. * @MetatagTag(
  8. * id = "dcterms_creator",
  9. * label = @Translation("Creator"),
  10. * description = @Translation("An entity primarily responsible for making the resource. Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity."),
  11. * name = "dcterms.creator",
  12. * group = "dublin_core",
  13. * weight = 2,
  14. * type = "label",
  15. * secure = FALSE,
  16. * multiple = FALSE
  17. * )
  18. */
  19. class Creator extends MetaNameBase {
  20. // Nothing here yet. Just a placeholder class for a plugin.
  21. }