ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ilObjectAccess Class Reference

Class ilObjectAccess. More...

+ Inheritance diagram for ilObjectAccess:
+ Collaboration diagram for ilObjectAccess:

Public Member Functions

 _checkAccess ($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id="")
 Checks wether a user may invoke a command or not (this method is called by ilAccessHandler::checkAccess) More...
 
 _checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id)
 check condition More...
 

Static Public Member Functions

static _getCommands ()
 get commands More...
 
static _checkGoto ($a_target)
 check whether goto script will succeed More...
 
static _isOffline ($a_obj_id)
 Type-specific implementation of general status, has to be overwritten. More...
 
static _preloadData ($a_obj_ids, $a_ref_ids)
 Preload data. More...
 

Detailed Description

Class ilObjectAccess.

This class contains methods that check object specific conditions for access to objects. Every object type should provide an inherited class called ilObj<TypeName>Access

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 16 of file class.ilObjectAccess.php.

Member Function Documentation

◆ _checkAccess()

ilObjectAccess::_checkAccess (   $a_cmd,
  $a_permission,
  $a_ref_id,
  $a_obj_id,
  $a_user_id = "" 
)

Checks wether a user may invoke a command or not (this method is called by ilAccessHandler::checkAccess)

Please do not check any preconditions handled by ilConditionHandler here. Also don't do any RBAC checks.

Parameters
string$a_cmdcommand (not permission!)
string$a_permissionpermission
int$a_ref_idreference id
int$a_obj_idobject id
int$a_user_iduser id (if not provided, current user is taken)
Returns
boolean true, if everything is ok

Definition at line 33 of file class.ilObjectAccess.php.

References $ilUser.

Referenced by ilObjChatroomAccess\_getCommands().

34  {
35  global $ilUser, $ilAccess;
36 
37  if ($a_user_id == "")
38  {
39  $a_user_id = $ilUser->getId();
40  }
41 
42  // add no access info item and return false if access is not granted
43  // $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $a_text, $a_data = "");
44  //
45  // for all RBAC checks use checkAccessOfUser instead the normal checkAccess-method:
46  // $rbacsystem->checkAccessOfUser($a_user_id, $a_permission, $a_ref_id)
47 
48  return true;
49  }
$ilUser
Definition: imgupload.php:18
+ Here is the caller graph for this function:

◆ _checkCondition()

ilObjectAccess::_checkCondition (   $a_obj_id,
  $a_operator,
  $a_value,
  $a_usr_id 
)

check condition

this method is called by ilConditionHandler

Definition at line 56 of file class.ilObjectAccess.php.

57  {
58  switch($a_operator)
59  {
60  default:
61  return true;
62  }
63  }

◆ _checkGoto()

static ilObjectAccess::_checkGoto (   $a_target)
static

check whether goto script will succeed

Definition at line 90 of file class.ilObjectAccess.php.

Referenced by ilObjChatroomAccess\_getCommands(), and ilObjForumAccess\_getCommands().

91  {
92  global $ilAccess;
93 
94  $t_arr = explode("_", $a_target);
95 
96  if ($ilAccess->checkAccess("read", "", $t_arr[1]))
97  {
98  return true;
99  }
100  return false;
101  }
+ Here is the caller graph for this function:

◆ _getCommands()

static ilObjectAccess::_getCommands ( )
static

get commands

this method returns an array of all possible commands/permission combinations

example: $commands = array ( array("permission" => "read", "cmd" => "view", "lang_var" => "show"), array("permission" => "write", "cmd" => "edit", "lang_var" => "edit"), );

Definition at line 77 of file class.ilObjectAccess.php.

References array.

Referenced by ilObjectListGUI\init(), ilObjSAHSLearningModuleListGUI\initItem(), ilObjGroupReferenceListGUI\initItem(), ilObjCourseReferenceListGUI\initItem(), and ilObjCategoryReferenceListGUI\initItem().

78  {
79  $commands = array
80  (
81  array()
82  );
83 
84  return $commands;
85  }
Create styles array
The data for the language used.
+ Here is the caller graph for this function:

◆ _isOffline()

static ilObjectAccess::_isOffline (   $a_obj_id)
static

Type-specific implementation of general status, has to be overwritten.

Used in ListGUI and Learning Progress

Parameters
int$a_obj_id
Returns
bool

Definition at line 111 of file class.ilObjectAccess.php.

112  {
113  return null;
114  }

◆ _preloadData()

static ilObjectAccess::_preloadData (   $a_obj_ids,
  $a_ref_ids 
)
static

Preload data.

Parameters
array$a_obj_idsarray of object ids

Definition at line 121 of file class.ilObjectAccess.php.

122  {
123 
124  }

The documentation for this class was generated from the following file: