* @link https://www.tassos.gr * @copyright Copyright © 2024 Tassos All Rights Reserved * @license GNU GPLv3 or later */ defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Language\Text; extract($displayData); $options = isset($options) ? $options : $displayData; if (!$options['video'] || !is_array($options['video'])) { return; } $attributes = array_filter(array( isset($options['controls']) && $options['controls'] ? 'controls' : '', isset($options['loop']) && $options['loop'] ? 'loop' : '', isset($options['mute']) && $options['mute'] ? 'muted' : '', isset($options['autoplay']) && $options['autoplay'] ? 'autoplay playsinline' : '' )); $type_ext = $options['video']['ext'] === 'mov' ? 'mp4' : $options['video']['ext']; ?>
>