carhop__plugins__PROD-DEV/plugins/carhop-blocks/acf-blocks/custom-audio/custom-audio.php
Antoine M dc16228d12
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE refactoring Video block and introducing audio variation
2026-05-07 16:35:14 +02:00

20 lines
773 B
PHP

<?php
$share_link = get_field('share_link');
if($share_link){
$video_id_from_share_link = basename($share_link);
}
?>
<section <?php echo get_block_wrapper_attributes(array('class' => 'block-custom-video custom-video content-section')) ?>>
<div style="position: relative; width: 100%; padding-bottom: 56.25%; height: 50px; overflow: hidden;">
<iframe id="ik-vod-<?php echo $video_id_from_share_link ; ?>" class="ik-player-1jhvl2upwockr ik-embed" src="https://player.vod2.infomaniak.com/embed/<?php echo $video_id_from_share_link ; ?>" width="100%" height="0px" style="position: absolute; top: 0; left: 0; right: 0; bottom: 0" allowfullscreen crossorigin="anonymous" frameborder="0" allow="autoplay; fullscreen; picture-in-picture"></iframe>
</div>
</section>