59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package Advanced Custom Fields
|
|
* @version 2.8.8 Pro
|
|
*
|
|
* @author Tassos Marinos <info@tassos.gr>
|
|
* @link http://www.tassos.gr
|
|
* @copyright Copyright © 2020 Tassos Marinos All Rights Reserved
|
|
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> 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);
|
|
}
|
|
} |