0be2723a81748dd13953e6c7219967a5be550cb1
[yaffs-website] / TwitterCardsPlayerStream.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 player stream url metatag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_player_stream",
12  *   label = @Translation("MP4 media stream URL"),
13  *   description = @Translation("The full URL for an MP4 video (h.264) or audio (AAC) stream, takes precidence over the other media player field."),
14  *   name = "twitter:player:stream",
15  *   group = "twitter_cards",
16  *   weight = 403,
17  *   type = "uri",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsPlayerStream extends MetaNameBase {
23 }