* @link http://www.tassos.gr * @copyright Copyright © 2020 Tassos Marinos All Rights Reserved * @license GNU GPLv3 or later */ defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\Form\Form; JLoader::register('ACF_Field', JPATH_PLUGINS . '/system/acf/helper/plugin.php'); if (!class_exists('ACF_Field')) { Factory::getApplication()->enqueueMessage('Advanced Custom Fields System Plugin is missing', 'error'); return; } class PlgFieldsACFVideo extends ACF_Field { /** * The form event. Load additional parameters when available into the field form. * Only when the type of the form is of interest. * * @param Form $form The form * @param stdClass $data The data * * @return void * * @since 3.7.0 */ public function onCustomFieldsPrepareDom($field, DOMElement $parent, Form $form) { if (!$fieldNode = parent::onCustomFieldsPrepareDom($field, $parent, $form)) { return; } // Self Hosted Videos accept relative paths which won't pass the "url" validation if ($field->fieldparams->get('provider') != 'SelfHostedVideo') { $this->validate = 'url'; } else { $this->validate = null; $fieldNode->setAttribute('validate', ''); } return parent::onCustomFieldsPrepareDom($field, $parent, $form); } }