API16:JMenu/authorise
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
Method to check JMenu object authorization against an access control object and optionally an access extension object
Syntax
authorise($id)
| Parameter Name | Default Value | Description |
|---|---|---|
| $id | $id The menu id |
Returns
boolean True if authorized
Defined in
libraries/joomla/application/menu.php
Importing
jimport( 'joomla.application.menu' );
Source Body
public function authorise($id) { $menu = &$this->getItem($id); $user = &JFactory::getUser(); if ($menu) { return in_array((int) $menu->access, $user->authorisedLevels()); } else { return true; } }
[Edit See Also] SeeAlso:JMenu/authorise
Examples
<CodeExamplesForm />
