ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
ilObjBookingPoolAccess Class Reference

Class ilObjBookingPoolAccess. More...

+ Inheritance diagram for ilObjBookingPoolAccess:
+ Collaboration diagram for ilObjBookingPoolAccess:

Public Member Functions

 __construct ()
 Constructor. More...
 
 _checkAccess ($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id="")
 
 canBeDelivered (ilWACPath $ilWACPath)
 
- Public Member Functions inherited from 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) More...
 
 _checkCondition ($a_obj_id, $a_operator, $a_value, $a_usr_id)
 check condition More...
 
 canBeDelivered (ilWACPath $ilWACPath)
 
Parameters
ilWACPath$ilWACPath
Returns
bool
More...
 

Static Public Member Functions

static _getCommands ()
 get commands More...
 
static _checkGoto ($a_target)
 check whether goto script will succeed More...
 
static _lookupOnlineStatus ($a_ids)
 Check wether booking pool is online (legacy version) More...
 
- Static Public Member Functions inherited from ilObjectAccess
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 if object type does not support centralized offline handling. More...
 
static _preloadData ($a_obj_ids, $a_ref_ids)
 Preload data. More...
 

Protected Attributes

 $user
 
 $rbacsystem
 

Detailed Description

Class ilObjBookingPoolAccess.

Author
Jörg Lützenkirchen luetz.nosp@m.enki.nosp@m.rchen.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
Id
class.ilObjCategoryAccess.php 20139 2009-06-08 09:45:39Z akill

Definition at line 15 of file class.ilObjBookingPoolAccess.php.

Constructor & Destructor Documentation

◆ __construct()

ilObjBookingPoolAccess::__construct ( )

Constructor.

Definition at line 31 of file class.ilObjBookingPoolAccess.php.

References $DIC, and user().

32  {
33  global $DIC;
34 
35  $this->user = $DIC->user();
36  $this->rbacsystem = $DIC->rbac()->system();
37  }
user()
Definition: user.php:4
$DIC
Definition: xapitoken.php:46
+ Here is the call graph for this function:

Member Function Documentation

◆ _checkAccess()

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

Definition at line 84 of file class.ilObjBookingPoolAccess.php.

References $ilUser, $rbacsystem, and $user.

85  {
88 
89  if ($a_user_id == "") {
90  $a_user_id = $ilUser->getId();
91  }
92 
93  // add no access info item and return false if access is not granted
94  // $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $a_text, $a_data = "");
95  //
96  // for all RBAC checks use checkAccessOfUser instead the normal checkAccess-method:
97  // $rbacsystem->checkAccessOfUser($a_user_id, $a_permission, $a_ref_id)
98 
99  //TODO refactor this: first check if the object is online and then the permissions.
100  #22653
101  if (($a_permission == "visible" || $a_permission == "read") && !$rbacsystem->checkAccessOfUser($a_user_id, 'write', $a_ref_id)) {
102  $pool = new ilObjBookingPool($a_ref_id);
103  if ($pool->isOffline()) {
104  return false;
105  }
106  }
107 
108  return true;
109  }
Class ilObjBookingPool.
$ilUser
Definition: imgupload.php:18

◆ _checkGoto()

static ilObjBookingPoolAccess::_checkGoto (   $a_target)
static

check whether goto script will succeed

Definition at line 65 of file class.ilObjBookingPoolAccess.php.

References $DIC.

66  {
67  global $DIC;
68 
69  $ilAccess = $DIC->access();
70 
71  $t_arr = explode("_", $a_target);
72 
73  if ($t_arr[0] != "book" || ((int) $t_arr[1]) <= 0) {
74  return false;
75  }
76 
77  if ($ilAccess->checkAccess("read", "", $t_arr[1]) ||
78  $ilAccess->checkAccess("visible", "", $t_arr[1])) {
79  return true;
80  }
81  return false;
82  }
$DIC
Definition: xapitoken.php:46

◆ _getCommands()

static ilObjBookingPoolAccess::_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 52 of file class.ilObjBookingPoolAccess.php.

Referenced by ilObjBookingPoolListGUI\init().

53  {
54  $commands = array();
55  $commands[] = array("permission" => "read", "cmd" => "render", "lang_var" => "show", "default" => true);
56  $commands[] = array("permission" => "write", "cmd" => "render", "lang_var" => "edit_content");
57  $commands[] = array("permission" => "write", "cmd" => "edit", "lang_var" => "settings");
58 
59  return $commands;
60  }
+ Here is the caller graph for this function:

◆ _lookupOnlineStatus()

static ilObjBookingPoolAccess::_lookupOnlineStatus (   $a_ids)
static

Check wether booking pool is online (legacy version)

Deprecated:

Definition at line 116 of file class.ilObjBookingPoolAccess.php.

References $DIC, $ilDB, and $lm_set.

Referenced by ilContainer\legacyOnlineFilter().

117  {
118  global $DIC;
119 
120  $ilDB = $DIC->database();
121 
122  $q = "SELECT booking_pool_id, pool_offline FROM booking_settings WHERE " .
123  $ilDB->in("booking_pool_id", $a_ids, false, "integer");
124  $lm_set = $ilDB->query($q);
125  $status = [];
126  while ($r = $ilDB->fetchAssoc($lm_set)) {
127  $status[$r["booking_pool_id"]] = !$r["pool_offline"];
128  }
129  return $status;
130  }
$lm_set
global $ilDB
$DIC
Definition: xapitoken.php:46
+ Here is the caller graph for this function:

◆ canBeDelivered()

ilObjBookingPoolAccess::canBeDelivered ( ilWACPath  $ilWACPath)
Parameters
ilWACPath$ilWACPath
Returns
bool

Implements ilWACCheckingClass.

Definition at line 138 of file class.ilObjBookingPoolAccess.php.

139  {
140 
141  // we return always false, since the files in the file/ and post/ directoies
142  // are server by php (they could/should be moved to the data dir outside of the web doc root)
143  return false;
144  }

Field Documentation

◆ $rbacsystem

ilObjBookingPoolAccess::$rbacsystem
protected

Definition at line 25 of file class.ilObjBookingPoolAccess.php.

Referenced by _checkAccess().

◆ $user

ilObjBookingPoolAccess::$user
protected

Definition at line 20 of file class.ilObjBookingPoolAccess.php.

Referenced by _checkAccess().


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