API16

Difference between revisions of "JAccess"

From Joomla! Documentation

(New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JAccess}} ===Defined in=== libra...)
 
m (preparing for archive only)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<span class="editsection" style="font-size:76%;">
+
<! removed transcluded page call, red link never existed >
<nowiki>[</nowiki>[[Description:JAccess|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
{{Description:JAccess}}
 
  
 
===Defined in===
 
===Defined in===
Line 30: Line 27:
 
|Method to return a list of user Ids contained in a Group
 
|Method to return a list of user Ids contained in a Group
 
|}
 
|}
 +
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.access.access' );</source>
 
<source lang="php">jimport( 'joomla.access.access' );</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JAccess|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JAccess}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=JAccess
 
  category=JAccess
  category=CodeExample
+
  namespace=CodeExample
 
  category=ClassExample
 
  category=ClassExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:16, 24 March 2017

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

<! removed transcluded page call, red link never existed >

Defined in[edit]

libraries/joomla/access/access.php

Methods[edit]

Method name Description
check Method to check if a user is authorised to perform an action, optionally on an asset.
getAssetRules Method to return the JRules object for an asset. The returned object can optionally hold only the rules explicitly set for the asset or the summation of all inherited rules from parent assets and explicit rules.
getGroupsByUser Method to return a list of user groups mapped to a user. The returned list can optionally hold only the groups explicitly mapped to the user or all groups both explicitly mapped and inherited by the user.
getAuthorisedViewLevels Method to return a list of view levels for which the user is authorised.
getActions Method to return a list of actions for which permissions can be set given a component and section.
getUsersByGroup Method to return a list of user Ids contained in a Group

Importing[edit]

jimport( 'joomla.access.access' );


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]