uawdijnntqw1x1x1
IP : 216.73.216.168
Hostname : server.fattispazio.it
Kernel : Linux server.fattispazio.it 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
poliximo
/
public_html
/
4690b
/
..
/
administrator
/
components
/
com_rsfirewall
/
controller.php
/
/
<?php /** * @package RSFirewall! * @copyright (c) 2009 - 2019 RSJoomla! * @link https://www.rsjoomla.com * @license GNU General Public License http://www.gnu.org/licenses/gpl-3.0.en.html */ defined('_JEXEC') or die('Restricted access'); class RsfirewallController extends JControllerLegacy { public function __construct($config = array()) { parent::__construct($config); // Load the framework JHtml::_('behavior.framework'); // Load stylesheet JHtml::_('rsfirewall_stylesheet', 'com_rsfirewall/style.css', array('relative' => true, 'version' => 'auto')); // Load jQuery from Joomla! 3 JHtml::_('jquery.framework'); // Load our scripts JHtml::_('rsfirewall_script', 'com_rsfirewall/jquery.knob.js', array('relative' => true, 'version' => 'auto')); JHtml::_('rsfirewall_script', 'com_rsfirewall/rsfirewall.js', array('relative' => true, 'version' => 'auto')); // load language, english first $lang = JFactory::getLanguage(); $lang->load('com_rsfirewall', JPATH_ADMINISTRATOR, 'en-GB', true); $lang->load('com_rsfirewall', JPATH_ADMINISTRATOR, $lang->getDefault(), true); $lang->load('com_rsfirewall', JPATH_ADMINISTRATOR, null, true); // load the frontend language // this language file contains some event log translations // it's usually loaded by the System Plugin, but if it's disabled, we need to load it here $model = $this->getModel('rsfirewall'); if (!$model->isPluginEnabled()) { $lang->load('com_rsfirewall', JPATH_SITE, 'en-GB', true); $lang->load('com_rsfirewall', JPATH_SITE, $lang->getDefault(), true); $lang->load('com_rsfirewall', JPATH_SITE, null, true); } } public function display($cachable = false, $urlparams = false) { parent::display($cachable, $urlparams); } public function acceptModifiedFiles() { JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN')); $input = JFactory::getApplication()->input; $cid = $input->get('cid', '', 'array'); $cid = array_map('intval', $cid); if ($cid) { $model = $this->getModel('rsfirewall'); $model->acceptModifiedFiles($cid); } $this->setRedirect('index.php?option=com_rsfirewall', JText::_('COM_RSFIREWALL_HASH_CHANGED_SUCCESS')); } protected function showResponse($success, $data=null) { $app = JFactory::getApplication(); $document = JFactory::getDocument(); // set JSON encoding $document->setMimeEncoding('application/json'); // compute the response $response = new stdClass(); $response->success = $success; if ($data) { $response->data = $data; } // show the response echo json_encode($response); // close $app->close(); } public function getLatestJoomlaVersion() { $model = $this->getModel('check'); $data = new stdClass(); if ($response = $model->checkJoomlaVersion()) { $success = true; list($data->current, $data->latest, $data->is_latest) = $response; } else { // error $success = false; $data->message = $model->getError(); } $this->showResponse($success, $data); } public function getLatestFirewallVersion() { $model = $this->getModel('check'); $data = new stdClass(); if ($response = $model->checkRSFirewallVersion()) { $success = true; list($data->current, $data->latest, $data->is_latest) = $response; } else { // error $success = false; $data->message = $model->getError(); } $this->showResponse($success, $data); } }
/home/poliximo/public_html/4690b/../administrator/components/com_rsfirewall/controller.php