<?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 RsfirewallViewRsfirewall extends HtmlView
{
	public function display($tpl = null)
	{
		Factory::getApplication()->enqueueMessage(Text::_('COM_RSFIREWALL_FRONTEND_MESSAGE'), 'warning');
	}
}