ACL Extension  0.3
 All Data Structures Namespaces Files Functions Variables
AclModule Class Reference

Public Member Functions

 init ()
 beforeControllerAction ($controller, $action)

Detailed Description

Definition at line 3 of file AclModule.php.


Member Function Documentation

beforeControllerAction (   $controller,
  $action 
)

Definition at line 17 of file AclModule.php.

{
if(parent::beforeControllerAction($controller, $action))
{
// this method is called before any module controller action is performed
// you may place customized code here
return true;
}
else
return false;
}
init ( )

Definition at line 5 of file AclModule.php.

{
// this method is called when the module is being created
// you may place code here to customize the module or the application
// import the module-level models and components
$this->setImport(array(
'acl.models.*',
'acl.components.*',
));
}

The documentation for this class was generated from the following file: