API16

JController/authorize

From Joomla! Documentation

< API16:JController
Revision as of 17:35, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Authorization check <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </sp...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Authorization check

[Edit Descripton]

Template:Description:JController/authorize

Syntax[edit]

authorize($task)
Parameter Name Default Value Description
$task $task The ACO Section Value to check access on

Returns[edit]

boolean True if authorized

Defined in[edit]

libraries/joomla/application/component/controller.php

Importing[edit]

jimport( 'joomla.application.component.controller' );

Source Body[edit]

function authorize($task)
{
        // Only do access check if the aco section is set
        if ($this->_acoSection) {
                // If we have a section value set that trumps the passed task ???
                if ($this->_acoSectionValue) {
                        // We have one, so set it and lets do the check
                        $task = $this->_acoSectionValue;
                }
                // Get the JUser object for the current user and return the authorization boolean
                $user = & JFactory::getUser();
                return $user->authorize($this->_acoSection, $task);
        } else {
                // Nothing set, nothing to check... so obviously its ok :)
                return true;
        }
}

[Edit See Also] Template:SeeAlso:JController/authorize

Examples[edit]

<CodeExamplesForm />