carhop__plugins__PROD-DEV/plugins/carhop-blocks/acf-blocks/custom-video/custom-video.php
Antoine M 1d58ea1cbc
All checks were successful
continuous-integration/drone/push Build is passing
Refactor video aspect
2026-05-07 17:07:29 +02:00

20 lines
629 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')) ?>>
<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="auto" style="aspect-ratio: 16 / 9" allowfullscreen crossorigin="anonymous" frameborder="0" allow="autoplay; fullscreen; picture-in-picture"></iframe>
</section>