eee31215550d7673906110dab70844fb880f0778
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsAppUrlGooglePlay.php
1 <?php
2
3 namespace Drupal\metatag_twitter_cards\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * The Twitter Cards app's custom URL scheme for Google Play metatag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_app_url_googleplay",
12  *   label = @Translation("Google Play app's custom URL scheme"),
13  *   description = @Translation("The Google Play app's custom URL scheme (must include ""://"" after the scheme name)."),
14  *   name = "twitter:app:url:googleplay",
15  *   group = "twitter_cards",
16  *   weight = 308,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsAppUrlGooglePlay extends MetaNameBase {
23 }