API16:JUser/authorisedLevels
From Joomla! Documentation
Description
Gets an array of the authorised access levels for the user
Syntax
authorisedLevels()
Returns
array
Defined in
libraries/joomla/user/user.php
Importing
jimport( 'joomla.user.user' );
Source Body
public function authorisedLevels()
{
if ($this->_authLevels === null) {
$this->_authLevels = array();
}
if (empty($this->_authLevels)) {
$this->_authLevels = JAccess::getAuthorisedViewLevels($this->id);
}
return $this->_authLevels;
}
Examples
Code Examples