public function Youku::renderEmbedCode in Video Embed Youku 8
File
- src/Plugin/video_embed_field/Provider/Youku.php, line 23
- Contains \Drupal\video_embed_youku\Plugin\video_embed_field\Provider\Youku.
Class
- Youku
- Plugin annotation
@VideoEmbedProvider(
id = "youku",
title = @Translation("Youku")
)
Namespace
Drupal\video_embed_youku\Plugin\video_embed_field\Provider
Code
public function renderEmbedCode($width, $height, $autoplay) {
return [
'#type' => 'html_tag',
'#tag' => 'iframe',
'#attributes' => [
'width' => $width,
'height' => $height,
'frameborder' => '0',
'allowfullscreen' => 'allowfullscreen',
'src' => sprintf('https://player.youku.com/embed/%s?autoplay=%d', $this
->getVideoId(), $autoplay),
],
];
}