558c7aab256a6619251374d7dba1df3445ae1797
[yaffs-website] / web / modules / contrib / metatag / metatag_twitter_cards / src / Plugin / metatag / Tag / TwitterCardsPlayerStreamContentType.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 content-type metatag.
9  *
10  * @MetatagTag(
11  *   id = "twitter_cards_player_stream_content_type",
12  *   label = @Translation("MP4 media stream MIME-type"),
13  *   description = @Translation("The MIME type for the media contained in the stream URL, as defined by <a href=':url'>RFC 4337</a>.", arguments = { ":url" = "http://tools.ietf.org/rfc/rfc4337.txt" }),
14  *   name = "twitter:player:stream:content_type",
15  *   group = "twitter_cards",
16  *   weight = 404,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class TwitterCardsPlayerStreamContentType extends MetaNameBase {
23 }