API15

Difference between revisions of "JController/authorize"

From Joomla! Documentation

< API15:JController
(New page: ===Description=== Authorization check <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </sp...)
 
Line 32: Line 32:
 
===Source Body===
 
===Source Body===
 
<source lang="php">
 
<source lang="php">
function authorize($task)
+
function authorize( $task )
 
{
 
{
 
         // Only do access check if the aco section is set
 
         // Only do access check if the aco section is set
         if ($this->_acoSection) {
+
         if ($this->_acoSection)
 +
        {
 
                 // If we have a section value set that trumps the passed task ???
 
                 // If we have a section value set that trumps the passed task ???
 
                 if ($this->_acoSectionValue) {
 
                 if ($this->_acoSectionValue) {
Line 43: Line 44:
 
                 // Get the JUser object for the current user and return the authorization boolean
 
                 // Get the JUser object for the current user and return the authorization boolean
 
                 $user = & JFactory::getUser();
 
                 $user = & JFactory::getUser();
                 return $user->authorize($this->_acoSection, $task);
+
                 return $user->authorize( $this->_acoSection, $task );
         } else {
+
         }
 +
        else
 +
        {
 
                 // Nothing set, nothing to check... so obviously its ok :)
 
                 // Nothing set, nothing to check... so obviously its ok :)
 
                 return true;
 
                 return true;

Revision as of 17:09, 22 March 2010

The "API15" 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 />