AlIosAppStoreId.php 597 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 iOS app store ID meta tag.
  6. *
  7. * @MetatagTag(
  8. * id = "al_ios_app_store_id",
  9. * label = @Translation("iOS app store ID"),
  10. * description = @Translation("The app ID for the app store."),
  11. * name = "al:ios:app_store_id",
  12. * group = "app_links",
  13. * weight = 1,
  14. * type = "string",
  15. * secure = FALSE,
  16. * multiple = FALSE
  17. * )
  18. */
  19. class AlIosAppStoreId extends MetaPropertyBase {
  20. // Nothing here yet. Just a placeholder class for a plugin.
  21. }