19 declare(strict_types=1);
39 $this->
user = $DIC->user();
45 array(
"permission" =>
"read",
"cmd" =>
"infoScreen",
"lang_var" =>
"info_short",
"default" =>
true),
46 array(
"permission" =>
"read",
"cmd" =>
"register",
"lang_var" =>
"join_session"),
47 array(
"permission" =>
"read",
"cmd" =>
"unregister",
"lang_var" =>
"event_unregister"),
48 array(
"permission" =>
"write",
"cmd" =>
"edit",
"lang_var" =>
"settings"),
49 array(
"permission" =>
"manage_materials",
"cmd" =>
"materials",
"lang_var" =>
"crs_objective_add_mat"),
50 array(
'permission' =>
'manage_members',
'cmd' =>
'members',
'lang_var' =>
'event_edit_members')
56 public function _checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id =
""): bool
63 $a_user_id = $ilUser->
getId();
69 if (!self::_lookupRegistration($a_obj_id)) {
72 if ($ilUser->isAnonymous()) {
75 if (self::_lookupRegistered($a_user_id, $a_obj_id)) {
91 return self::_lookupRegistered($a_user_id, $a_obj_id);
101 if (!$session_data->isRegistrationUserLimitEnabled()) {
105 if ($part->getCountMembers() >= $session_data->getRegistrationMaxUsers()) {
115 $ilAccess = $DIC->access();
117 $t_arr = explode(
"_", $a_target);
119 if ($t_arr[0] !=
"sess" || ((
int) $t_arr[1]) <= 0) {
123 if ($ilAccess->checkAccess(
"read",
"", (
int) $t_arr[1]) ||
124 $ilAccess->checkAccess(
"visible",
"", (
int) $t_arr[1])) {
134 $ilDB = $DIC->database();
136 if (!is_null(self::$registrations)) {
137 return (
bool) self::$registrations[$a_obj_id];
140 $query =
"SELECT registration,obj_id FROM event ";
143 self::$registrations[$row->obj_id] = (bool) $row->registration;
145 return (
bool) self::$registrations[$a_obj_id];
152 $ilDB = $DIC->database();
153 $ilUser = $DIC->user();
155 if (isset(self::$registered[$a_usr_id][$a_obj_id])) {
156 return (
bool) self::$registered[$a_usr_id][$a_obj_id];
159 $query =
"SELECT event_id, registered FROM event_participants WHERE usr_id = " .
$ilDB->quote($ilUser->getId(),
'integer');
161 self::$registered[$a_usr_id] = [];
163 self::$registered[$a_usr_id][$row->event_id] = (bool) $row->registered;
165 return (
bool) (self::$registered[$a_usr_id][$a_obj_id] ??
false);
172 self::$booking_repo = $DIC->bookingManager()
175 ->reservationWithContextObjCache($a_obj_ids);
180 if (self::$booking_repo instanceof \
ILIAS\BookingManager\Reservations\ReservationDBRepository) {
181 return self::$booking_repo;
static array $registrations
Interface Observer Contains several chained tasks and infos about them.
Repo class for reservations Acts on tables booking_reservation (rw), booking_reservation_group (rw) a...
static _isSubscriber(int $a_obj_id, int $a_usr_id)
static _preloadData($a_obj_ids, $a_ref_ids)
static _lookupRegistered(int $a_usr_id, int $a_obj_id)
isRegistrationLimitExceeded(int $ref_id, int $obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getBookingInfoRepo()
_checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id="")
static getInstance(int $a_ref_id)
static _checkGoto($a_target)
static _isOnList(int $a_usr_id, int $a_obj_id)
static ILIAS BookingManager Reservations ReservationDBRepository $booking_repo
static _lookupRegistration(int $a_obj_id)