* @link https://www.tassos.gr * @copyright Copyright © 2024 Tassos All Rights Reserved * @license GNU GPLv3 or later */ defined('_JEXEC') or die; use Joomla\CMS\Factory; extract($displayData); $options = isset($options) ? $options : $displayData; if (!$options['value']) { return; } if ($options['load_css_vars']) { $atts = []; // Add cover image if (isset($options['coverImageType']) && isset($options['coverImage']) && in_array($options['coverImageType'], ['auto', 'custom']) && !empty($options['coverImage'])) { $atts['video-cover-image'] = $options['coverImage']; } $css = \NRFramework\Helpers\CSS::cssVarsToString($atts, '.nrf-widget.tf-video.' . $options['id']); Factory::getDocument()->addStyleDeclaration($css); } ?>
>