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