API16

API16:JFactory/getACL

From Joomla! Documentation

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

Code Examples