| Current Path : /home/nicholsonsmith/public_html/administrator/components/com_admintools/controllers/ |
| Current File : /home/nicholsonsmith/public_html/administrator/components/com_admintools/controllers/ipbls.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 AdmintoolsControllerIpbls 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');
}
}