API15:JFactory/getACL
From Joomla! Documentation
Description
Get an authorization object
Syntax
& getACL()
Returns
object
Defined in
libraries/joomla/factory.php
Importing
jimport( 'joomla.factory' );
Source Body
function &getACL( )
{
static $instance;
if (!is_object($instance)) {
$instance = JFactory::_createACL();
}
return $instance;
}
Examples
Code Examples