Your IP : 216.73.216.240
<?php
/**
* @version 7.0
* @package AllVideos (plugin)
* @author JoomlaWorks - https://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2025 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// Joomla 4 & 5
if (version_compare(JVERSION, '4', 'ge')) {
$aliases = [
'JFactory' => 'Joomla\\CMS\\Factory',
'JFormField' => 'Joomla\\CMS\\Form\\FormField',
'JHtml' => 'Joomla\\CMS\\HTML\\HTMLHelper',
'JText' => 'Joomla\\CMS\\Language\\Text',
'JUri' => 'Joomla\\CMS\\Uri\\Uri',
];
foreach ($aliases as $legacy => $modern) {
if (class_exists($modern) && ! class_exists($legacy)) {
class_alias($modern, $legacy);
}
}
} elseif (version_compare(JVERSION, '2.5.0', 'ge')) {
jimport('joomla.form.formfield');
}
if (version_compare(JVERSION, '3.5.0', 'ge')) {
class JWElement extends JFormField
{
public function getInput()
{
$controls = (! empty($this->options['control'])) ? $this->options['control'] : [];
return $this->fetchElement($this->name, $this->value, $this->element, $controls);
}
public function getLabel()
{
if (method_exists($this, 'fetchTooltip')) {
$controls = (! empty($this->options['control'])) ? $this->options['control'] : [];
return $this->fetchTooltip($this->element['label'], $this->description, $this->element, $controls, $this->element['name'] = '');
} else {
return parent::getLabel();
}
}
public function render($layoutId, $data = [])
{
return $this->getInput();
}
}
} elseif (version_compare(JVERSION, '2.5.0', 'ge')) {
class JWElement extends JFormField
{
public function getInput()
{
return $this->fetchElement($this->name, $this->value, $this->element, $this->options['control']);
}
public function getLabel()
{
if (method_exists($this, 'fetchTooltip')) {
return $this->fetchTooltip($this->element['label'], $this->description, $this->element, $this->options['control'], $this->element['name'] = '');
} else {
return parent::getLabel();
}
}
public function render()
{
return $this->getInput();
}
}
} else {
jimport('joomla.html.parameter.element');
class JWElement extends JElement
{
}
}