File Manager

Current Directory: /home/astoriaah/www/old15/administrator/components/com_admintools/controllers
Viewing File: /home/astoriaah/www/old15/administrator/components/com_admintools/controllers/ipautobans.php
<?php /** * @package AdminTools * @copyright Copyright (c)2010-2015 Nicholas K. Dionysopoulos * @license GNU General Public License version 3, or later * @version $Id$ */ // Protect from unauthorized access defined('_JEXEC') or die; class AdmintoolsControllerIpautobans extends F0FController { protected function onBeforeBrowse() { return $this->checkACL('admintools.security'); } protected function onBeforeApply() { return $this->checkACL('admintools.security'); } protected function onBeforeSave() { return $this->checkACL('admintools.security'); } protected function onBeforePublish() { return $this->checkACL('admintools.security'); } protected function onBeforeUnpublish() { return $this->checkACL('admintools.security'); } protected function onBeforeRemove() { return $this->checkACL('admintools.security'); } protected function onBeforeSavenew() { return $this->checkACL('admintools.security'); } }