Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
colibri-page-builder
/
extend-builder
/
shortcodes
/
//home/puskom/mastur/colibri-page-builder/extend-builder/shortcodes/video.php
<?php namespace ExtendBuilder; add_shortcode('colibri_video_player', function ($atts) { ob_start(); if($atts['type']==='external') colibri_html_embed_iframe( $atts['url'],$atts['autoplay']); else colibri_html_embed_video($atts['url'],$atts['attributes']); $content = ob_get_clean(); return $content; }); function colibri_html_embed_iframe($url,$autoplay){ echo "<iframe src=".esc_url($url)." class='h-video-main'".(($autoplay === 'true') ? 'allow="autoplay"' : '')." allowfullscreen></iframe>"; } function colibri_html_embed_video($url,$attributes){ echo "<video class='h-video-main' ". esc_attr($attributes)." ><source src=".esc_url($url)." type='video/mp4' /></video>"; }