Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / modules / contrib / metatag / metatag_app_links / src / Plugin / metatag / Tag / AlAndroidPackage.php
1 <?php
2
3 namespace Drupal\metatag_app_links\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * The AppLinks Android app package ID meta tag.
9  *
10  * @MetatagTag(
11  *   id = "al_android_package",
12  *   label = @Translation("Android app package ID"),
13  *   description = @Translation("A fully-qualified package name for intent generation. <strong>This attribute is required by the App Links specification.</strong>"),
14  *   name = "al:android:package",
15  *   group = "app_links",
16  *   weight = 1,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class AlAndroidPackage extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }