API16:JController/authorize
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
Authorization check
Description:JController/authorize
Syntax
authorize($task)
| Parameter Name | Default Value | Description |
|---|---|---|
| $task | $task The ACO Section Value to check access on |
Returns
boolean True if authorized
Defined in
libraries/joomla/application/component/controller.php
Importing
jimport( 'joomla.application.component.controller' );
Source Body
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] SeeAlso:JController/authorize
Examples
<CodeExamplesForm />
