| Current Path : /var/www/html/administrator/components/com_rsfirewall/views/ignored/ |
| Current File : /var/www/html/administrator/components/com_rsfirewall/views/ignored/view.html.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\View\HtmlView;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
class RsfirewallViewIgnored extends HtmlView
{
public function display($tpl = null)
{
if (!Factory::getUser()->authorise('check.run', 'com_rsfirewall'))
{
$app = Factory::getApplication();
$app->enqueueMessage(Text::_('JERROR_ALERTNOAUTHOR'), 'error');
$app->redirect('index.php?option=com_rsfirewall');
}
try
{
// Get files
$this->files = $this->get('Files');
parent::display($tpl);
}
catch (Exception $e)
{
Factory::getApplication()->enqueueMessage($e->getMessage(), 'error');
}
}
}