AccrualPolicy.php 634 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 "accrualPolicy" meta tag.
  6. *
  7. * @MetatagTag(
  8. * id = "dcterms_accrual_policy",
  9. * label = @Translation("Accrual Policy"),
  10. * description = @Translation("The policy governing the addition of items to a collection."),
  11. * name = "dcterms.accrualPolicy",
  12. * group = "dublin_core_advanced",
  13. * weight = 6,
  14. * type = "label",
  15. * secure = FALSE,
  16. * multiple = FALSE
  17. * )
  18. */
  19. class AccrualPolicy extends MetaNameBase {
  20. // Nothing here yet. Just a placeholder class for a plugin.
  21. }