API17:JAccess::check
From Joomla! Documentation
(Difference between revisions)
(Layout updates) |
(Updated to r1448:247ba8d88526) |
||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JAccess::check|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JAccess::check|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
| − | |||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public static | + | public static function check ( |
| + | $userId | ||
| + | $action | ||
| + | $asset=null | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 37: | Line 38: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' boolean True if authorised. | |
| − | boolean True if authorised. | + | * '''Defined''' on line 44 of libraries/joomla/access/access.php |
| − | + | * '''Since''' {{JVer|11.1 }} | |
| − | libraries/joomla/access/access.php | + | * '''Referenced by''' |
| − | * | + | ** [[JUser::authorise/11.1|JUser::authorise]] |
| − | + | ** [[JUser::save/11.1|JUser::save]] | |
| − | * [[JUser::authorise/11.1|JUser::authorise]] | + | |
| − | * [[JUser::save/11.1|JUser::save]] | + | |
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JAccess::check source code''' on [[jplatform:access/access.php#cl-36|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JAccess/11.1|JAccess]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Access/11.1|Access]] | ||
| + | * [[JAccess::check|Other versions of JAccess::check]] | ||
| + | {{SeeAlso:JAccess::check}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JAccess::check|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JAccess::check|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 60: | Line 61: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JAccess]][[Category:JAccess::check]]</noinclude> | <noinclude>[[Category:JAccess]][[Category:JAccess::check]]</noinclude> | ||
Revision as of 20:07, 27 April 2011
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.
JAccess::check
Description
Method to check if a user is authorised to perform an action, optionally on an asset.
Description:JAccess::check [Edit Descripton]
public static function check ( $userId $action $asset=null )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $userId | integer | Id of the user for which to check authorisation. | |
| $action | string | The name of the action to authorise. | |
| $asset | mixed | null | Integer asset id or the name of the asset as a string. Defaults to the global asset node. |
- Returns boolean True if authorised.
- Defined on line 44 of libraries/joomla/access/access.php
- Since
- Referenced by
See also
-
JAccess::check source code on BitBucket
-
Class JAccess
-
Subpackage Access
- Other versions of JAccess::check
SeeAlso:JAccess::check [Edit See Also]
User contributed notes
<CodeExamplesForm />
