API16:JFactory/getACL
From Joomla! Documentation
Contents |
Description
Get an authorization object
returns an object of type JAuthorization
onwards returns an object of type JAccess
Syntax
static getACL()
Returns
object JACL
Defined in
libraries/joomla/factory.php
Importing
jimport( 'joomla.factory' );
Source Body
public static function getACL() { if (!is_object(JFactory::$acl)) { jimport('joomla.access.access'); JFactory::$acl = new JAccess(); } return JFactory::$acl; }