Файловый менеджер - Редактировать - /var/www/html/administrator/components/com_rsfirewall/models/exceptions.php
Ðазад
<?php /* * @package RSFirewall! * @copyright (c) 2009 - 2024 RSJoomla! * @link https://www.rsjoomla.com/joomla-extensions/joomla-security.html * @license GNU General Public License https://www.gnu.org/licenses/gpl-3.0.en.html */ \defined('_JEXEC') or die; use Joomla\CMS\MVC\Model\ListModel; use Joomla\CMS\Language\Text; class RsfirewallModelExceptions extends ListModel { public function __construct($config = array()) { if (empty($config['filter_fields'])) { $config['filter_fields'] = array( 'date', 'match', 'reason', 'type', 'published', 'state' ); } parent::__construct($config); } protected function getListQuery() { $db = $this->getDbo(); $query = $db->getQuery(true); // get filtering states $search = $this->getState('filter.search'); $type = $this->getState('filter.type'); $state = $this->getState('filter.state'); $query->select('*')->from('#__rsfirewall_exceptions'); // search if ($search != '') { $search = $db->q('%'.str_replace(' ', '%', $db->escape($search, true)).'%', false); $query->where('('.$db->qn('match').' LIKE '.$search.' OR '.$db->qn('reason').' LIKE '.$search.')'); } // type if ($type != '') { $query->where($db->qn('type').'='.$db->q($type)); } // published/unpublished if ($state != '') { $query->where($db->qn('published').'='.$db->q($state)); } // order by $query->order($db->qn($this->getState('list.ordering', 'date')).' '.$db->escape($this->getState('list.direction', 'desc'))); return $query; } protected function populateState($ordering = null, $direction = null) { $this->setState('filter.search', $this->getUserStateFromRequest($this->context.'.filter.search', 'filter_search')); $this->setState('filter.type', $this->getUserStateFromRequest($this->context.'.filter.type', 'filter_type')); $this->setState('filter.state', $this->getUserStateFromRequest($this->context.'.filter.state', 'filter_state')); // List state information. parent::populateState('date', 'desc'); } public function toJson() { // Get Dbo $db = $this->getDbo(); // Populate state so filters and ordering is available. $this->populateState(); // Get results $results = $db->setQuery($this->getListQuery())->loadAssocList(); // Error on no results if (!$results) { throw new Exception(Text::_('COM_RSFIREWALL_NOT_ENOUGH_RESULTS_TO_OUTPUT')); } echo json_encode($results); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка