webform-help-video-youtube.html.twig in Webform 8.5
Same filename and directory in other branches
Theme implementation for webform help video using YouTube.
Available variables
- youtube_id: YouTube video id.
1 theme call to webform-help-video-youtube.html.twig
- WebformHelpVideoForm::buildForm in src/
Form/ WebformHelpVideoForm.php - Form constructor.
File
templates/webform-help-video-youtube.html.twigView source
- {#
- /**
- * @file
- * Theme implementation for webform help video using YouTube.
- *
- * Available variables
- * - youtube_id: YouTube video id.
- *
- * @ingroup themeable
- */
- #}
- {{ attach_library('webform/webform.help') }}
- <div class="webform-help-video-youtube">
- <div class="webform-help-video-youtube--container">
- <iframe width="560" height="315" src="https://www.youtube.com/embed/{{ youtube_id }}?rel=0&modestbranding=1{{ autoplay ? '&autoplay=1' : '' }}"{{ autoplay ? 'allow="autoplay"' : '' }} frameborder="0" allowfullscreen></iframe>
- </div>
- </div>