JFactory/getACL: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m clean up |
||
| Line 2: | Line 2: | ||
Get an authorization object | Get an authorization object | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
| Line 34: | Line 32: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
Revision as of 13:58, 24 March 2017
Description
Get an authorization object
<! removed transcluded page call, red link never existed >
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;
}
<! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />