{% sw_extends '@Storefront/storefront/element/cms-element-youtube-video.html.twig' %} {% block element_youtube_video %} {% set config = element.fieldConfig.elements %} {% set elementData = element.data %} {% if config.advancedPrivacyMode.value == true %} {% set videoUrl = 'https://www.youtube-nocookie.com/embed/' %} {% else %} {% set videoUrl = 'https://www.youtube.com/embed/' %} {% endif %} {% set videoUrl = videoUrl ~ config.videoID.value ~ '?' ~ 'rel=0' ~ '&' %} {% if config.autoPlay.value %} {% set videoUrl = videoUrl ~ 'autoplay=1' ~ '&' %} {% endif %} {% if config.loop.value %} {% set videoUrl = videoUrl ~ 'loop=1' ~ '&' ~ 'playlist=' ~ config.videoID.value ~ '&' %} {% endif %} {% if config.showControls.value == false %} {% set videoUrl = videoUrl ~ 'controls=0' ~ '&' %} {% endif %} {% if config.start.value > 0 %} {% set videoUrl = videoUrl ~ 'start=' ~ config.start.value ~ '&' %} {% endif %} {% if config.end.value == not null %} {% set videoUrl = videoUrl ~ 'end=' ~ config.end.value ~ '&' %} {% endif %} {% set videoUrl = videoUrl ~ 'disablekb=1' %} {% if config.displayMode.value == 'standard' or config.displayMode.value == null %} {% set displayMode = '' %} {% else %} {% set displayMode = 'is--' ~ config.displayMode.value %} {% endif %}
{% block element_youtube_video_inner %} {% set iframeClass = 'cms-element-youtube-video__video' %} {% if config.needsConfirmation.value == false %} {% else %} {% set pluginConfiguration = { videoUrl: videoUrl, iframeClasses: [ iframeClass ], btnClasses: [ 'btn', 'btn-outline-secondary' ], backdropClasses: [ 'cms-element-youtube-video__backdrop' ], confirmButtonText: 'component.cms.vimeo.acceptButtonLabel'|trans, overlayText: 'component.cms.vimeo.privacyNotice'|trans({ '%url%': path('frontend.cms.page',{ id: shopware.config.core.basicInformation.privacyPage }), '%platform%': 'YouTube' })|raw } %} {% block element_youtube_video_placeholder %}
{% if elementData.media %} {% sw_thumbnails 'cms-element-youtube-video__placeholder' with { media: elementData.media } %} {% endif %}
{% endblock %} {% endif %} {% endblock %}
{% endblock %}