* @link http://www.tassos.gr * @copyright Copyright © 2019 Tassos Marinos All Rights Reserved * @license GNU GPLv3 or later */ defined('_JEXEC') or die; if (!$videoURL = $field->value) { return; } $payload = [ 'value' => $videoURL, 'width' => $fieldParams->get('width', '480px'), 'height' => $fieldParams->get('height', '270px'), 'mute' => $fieldParams->get('mute', '0') === '1', 'loop' => $fieldParams->get('loop', '0') === '1', 'autopause' => $fieldParams->get('autopause', '0') === '1', 'start' => $fieldParams->get('start', ''), 'end' => $fieldParams->get('end', ''), 'coverImageType' => $fieldParams->get('coverImageType', false), 'coverImage' => $fieldParams->get('coverImage', ''), ]; // Set custom layout if ($field->params->get('acf_layout_override')) { $payload['layout'] = $field->params->get('acf_layout_override'); } echo \NRFramework\Widgets\Helper::render('Dailymotion', $payload);