API17

Difference between revisions of "JAccess::check"

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 check if a user is authorised to perform an action, optionally on an asset.  
 
Method to check if a user is authorised to perform an action, optionally on an asset.  
  
{{Description:JAccess::check}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JAccess::check|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
<source lang="php">
 
<source lang="php">
 
public static function check (
 
public static function check (
Line 42: Line 40:
 
* '''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}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JAccess::check|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JAccess::check
 
category=JAccess::check
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
Line 64: Line 60:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JAccess]][[Category:JAccess::check]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 21:18, 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 JAccess::check[edit]

Description[edit]

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


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]


User contributed notes[edit]

Code Examples[edit]