API17

Difference between revisions of "JAccess::check"

From Joomla! Documentation

(Updated to r1448:247ba8d88526)
m (moving preparation)
(2 intermediate revisions by the same user not shown)
Line 42: Line 42:
 
* '''Since''' {{JVer|11.1 }}
 
* '''Since''' {{JVer|11.1 }}
 
* '''Referenced by'''
 
* '''Referenced by'''
** [[JUser::authorise/11.1|JUser::authorise]]
+
** [[API17:JUser::authorise|JUser::authorise]]
** [[JUser::save/11.1|JUser::save]]
+
** [[API17:JUser::save|JUser::save]]
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JAccess::check source code''' on [[jplatform:access/access.php#cl-36|BitBucket]]
 
* {{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}} Class [[API17:JAccess|JAccess]]
* {{JVer|11.1}} Subpackage [[Subpackage_Access/11.1|Access]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Access|Access]]
* [[JAccess::check|Other versions of JAccess::check]]
+
* [[API17:JAccess::check|Other versions of JAccess::check]]
 
{{SeeAlso:JAccess::check}}
 
{{SeeAlso:JAccess::check}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
Line 64: Line 64:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JAccess]][[Category:JAccess::check]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 19:32, 11 May 2013

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 JAccess::check[edit]

Description[edit]

Method to check if a user is authorised to perform an action, optionally on an asset.

Template: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 Joomla 11.1
  • Referenced by

See also[edit]

Template:SeeAlso:JAccess::check [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />