23a36569cfb6c52f509601134152159de4fe73b0
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / IosAppLinkAlternative.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\metatag_mobile\Plugin\metatag\Tag\IosAppLinkAlternative.
5  */
6
7 namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
8
9 use Drupal\metatag\Plugin\metatag\Tag\LinkRelBase;
10
11 /**
12  * The iOS App link alternative for Apple mobile metatag.
13  *
14  * @MetatagTag(
15  *   id = "ios_app_link_alternative",
16  *   label = @Translation("iOS app link alternative"),
17  *   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."),
18  *   name = "alternate",
19  *   group = "apple_mobile",
20  *   weight = 91,
21  *   type = "uri",
22  *   secure = FALSE,
23  *   multiple = FALSE
24  * )
25  */
26 class IosAppLinkAlternative extends LinkRelBase {
27   // Nothing here yet. Just a placeholder class for a plugin.
28 }