| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/coseniors/tmp/install_68c435ce05e52/plugin/jw_allvideos/includes/elements/ |
Upload File : |
<?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
{
}
}