a3729435c283b1ca1b8166e88cdd0c8e5dc74aca
[yaffs-website] / web / modules / contrib / metatag / metatag_mobile / src / Plugin / metatag / Tag / AndroidAppLinkAlternative.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 Android app link alternative for Android mobile metatag.
9  *
10  * @MetatagTag(
11  *   id = "android_app_link_alternative",
12  *   label = @Translation("Android app link alternative"),
13  *   description = @Translation("A custom string for deeplinking to an Android mobile app. Should be in the format 'package_name/host_path', e.g. 'com.example.android/example/hello-screen'. The 'android-app://' prefix will be included automatically."),
14  *   name = "alternate",
15  *   group = "android_mobile",
16  *   weight = 91,
17  *   type = "uri",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class AndroidAppLinkAlternative extends LinkRelBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }