API16:JFactory/getACL
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
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; }
Examples
<CodeExamplesForm />
