AlWebShouldFallback.php 656 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\metatag_app_links\Plugin\metatag\Tag;
  3. use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
  4. /**
  5. * The AppLinks Web Should Fallback meta tag.
  6. *
  7. * @MetatagTag(
  8. * id = "al_web_should_fallback",
  9. * label = @Translation("Should fallback"),
  10. * description = @Translation("Indicates if the web URL should be used as a fallback; defaults to ""true""."),
  11. * name = "al:web:should_fallback",
  12. * group = "app_links",
  13. * weight = 2,
  14. * type = "string",
  15. * secure = FALSE,
  16. * multiple = FALSE
  17. * )
  18. */
  19. class AlWebShouldFallback extends MetaPropertyBase {
  20. // Nothing here yet. Just a placeholder class for a plugin.
  21. }