API17

Difference between revisions of "JUser::getAuthorisedCategories"

From Joomla! Documentation

(Updated to r1448:247ba8d88526)
m (preparing for archive only)
 
(4 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
Method to return a list of all categories that a user has permission for a given action.  
 
Method to return a list of all categories that a user has permission for a given action.  
  
{{Description:JUser::getAuthorisedCategories}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JUser::getAuthorisedCategories|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
<source lang="php">
 
<source lang="php">
 
public function getAuthorisedCategories (
 
public function getAuthorisedCategories (
Line 37: Line 35:
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JUser::getAuthorisedCategories source code''' on [[jplatform:user/user.php#cl-317|BitBucket]]
 
* {{JVer|11.1}} '''JUser::getAuthorisedCategories source code''' on [[jplatform:user/user.php#cl-317|BitBucket]]
* {{JVer|11.1}} Class [[JUser/11.1|JUser]]
+
* {{JVer|11.1}} Class [[API17:JUser|JUser]]
* {{JVer|11.1}} Subpackage [[Subpackage_User/11.1|User]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_User|User]]
* [[JUser::getAuthorisedCategories|Other versions of JUser::getAuthorisedCategories]]
+
* [[API17:JUser::getAuthorisedCategories|Other versions of JUser::getAuthorisedCategories]]
{{SeeAlso:JUser::getAuthorisedCategories}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JUser::getAuthorisedCategories|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JUser::getAuthorisedCategories
 
category=JUser::getAuthorisedCategories
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
Line 55: Line 51:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JUser]][[Category:JUser::getAuthorisedCategories]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:55, 24 March 2017

The "API17" 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.

Joomla 11.1 JUser::getAuthorisedCategories[edit]

Description[edit]

Method to return a list of all categories that a user has permission for a given action.


public function getAuthorisedCategories (
        $component
        $action
)
Parameter Type Default Description
$component string The component from which to retrieve the categories
$action string The name of the section within the component from which to retrieve the actions.
  • Returns array List of categories that this group can do this action to (empty array if none). Categories must be published.
  • Defined on line 325 of libraries/joomla/user/user.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]