Source.php 799 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 "Source" meta tag.
  6. *
  7. * @MetatagTag(
  8. * id = "dcterms_source",
  9. * label = @Translation("Source"),
  10. * description = @Translation("A related resource from which the described resource is derived. The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system."),
  11. * name = "dcterms.source",
  12. * group = "dublin_core",
  13. * weight = 11,
  14. * type = "label",
  15. * secure = FALSE,
  16. * multiple = FALSE
  17. * )
  18. */
  19. class Source extends MetaNameBase {
  20. // Nothing here yet. Just a placeholder class for a plugin.
  21. }