6efa753130ef46e52e994240aad3586d0d59a496
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / IosAppLinkAlternative.php
1 <?php
2
3 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\LinkRelBase;
6
7 /**
8  * The iOS App link alternative for Apple mobile metatag.
9  *
10  * @MetatagTag(
11  *   id = "ios_app_link_alternative",
12  *   label = @Translation("iOS app link alternative"),
13  *   description = @Translation("A custom string for deeplinking to an iOS mobile app. Should be in the format 'itunes_id/scheme/host_path', e.g. 123456/example/hello-screen'. The 'ios-app://' prefix will be included automatically."),
14  *   name = "alternate",
15  *   group = "apple_mobile",
16  *   weight = 91,
17  *   type = "uri",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class IosAppLinkAlternative extends LinkRelBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }