3 declare(strict_types=1);
50 $this->db = $DIC->database();
51 $this->tree = $DIC->repositoryTree();
52 $this->event_id = $a_event_id;
58 $this->user_id = $a_usr_id;
66 public function setMark(
string $a_mark): void
68 $this->mark = $a_mark;
88 $this->participated = $a_status;
98 $this->registered = $a_status;
108 $this->excused = $a_stat;
123 $this->event_id = $a_event_id;
128 $this->contact = (
int) $a_status;
143 $this->notificationEnabled = $value;
156 $this->participants_registered = $registered_participants;
165 if (!array_key_exists($a_usr_id, $this->participants)) {
166 $event_part = new \ilEventParticipants($this->event_id);
167 $event_part->setUserId($a_usr_id);
168 $event_part->setMark(
'');
169 $event_part->setComment(
'');
170 $event_part->setNotificationEnabled(
false);
171 $event_part->setParticipated(
false);
172 $event_part->setRegistered(
false);
173 $event_part->setContact(
false);
174 $event_part->setExcused($a_status);
175 $event_part->updateUser();
182 $this->db->manipulate(
$query);
189 $query =
"DELETE FROM event_participants " .
190 "WHERE event_id = " .
$ilDB->quote($this->
getEventId(),
'integer') .
" " .
191 "AND usr_id = " .
$ilDB->quote($this->
getUserId(),
'integer') .
" ";
194 $query =
"INSERT INTO event_participants (event_id,usr_id,registered,participated,contact,notification_enabled, excused " .
208 $lp_mark->setMark($this->
getMark());
218 return $this->participants[$a_usr_id] ?? [];
228 return (
bool) ($this->participants[$a_usr_id][
'registered'] ??
false);
233 return (
bool) ($this->participants[$a_usr_id][
'participated'] ??
false);
238 return (
bool) ($this->participants[$a_usr_id][
'excused'] ??
false);
243 return (
bool) ($this->participants[$a_usr_id][
'contact'] ??
false);
249 return self::_updateParticipation($a_usr_id, $this->
getEventId(), $a_status);
256 $ilDB = $DIC->database();
258 $query =
"SELECT * FROM event_participants " .
259 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
260 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
262 if (
$res->numRows()) {
263 $query =
"UPDATE event_participants " .
264 "SET participated = " .
$ilDB->quote((
int) $a_status,
'integer') .
" " .
265 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
266 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
268 $query =
"INSERT INTO event_participants (registered,participated,event_id,usr_id) " .
270 $ilDB->quote(0,
'integer') .
", " .
271 $ilDB->quote((
int) $a_status,
'integer') .
", " .
272 $ilDB->quote($a_event_id,
'integer') .
", " .
273 $ilDB->quote($a_usr_id,
'integer') .
" " .
288 $ilDB = $DIC->database();
290 $query =
"SELECT * FROM event_participants " .
291 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
292 "AND registered = " .
$ilDB->quote(1,
'integer');
296 $user_ids[] = $row->usr_id;
305 $ilDB = $DIC->database();
307 $query =
"SELECT * FROM event_participants " .
308 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
309 "AND participated = 1";
313 $user_ids[$row->usr_id] = $row->usr_id;
322 $ilDB = $DIC->database();
324 $query =
"SELECT participated FROM event_participants " .
325 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
326 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
329 return (
bool) $rec[
"participated"];
338 $ilDB = $DIC->database();
340 $query =
"SELECT * FROM event_participants " .
341 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
342 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
345 return (
bool) $row->registered;
350 public static function _register(
int $a_usr_id,
int $a_event_id): bool
354 $ilDB = $DIC->database();
356 $query =
"SELECT * FROM event_participants " .
357 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
358 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
360 if (
$res->numRows()) {
361 $query =
"UPDATE event_participants " .
362 "SET registered = '1' " .
363 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
364 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
366 $query =
"INSERT INTO event_participants (registered,participated,event_id,usr_id) " .
370 $ilDB->quote($a_event_id,
'integer') .
", " .
371 $ilDB->quote($a_usr_id,
'integer') .
" " .
382 public function register(
int $a_usr_id):
bool 387 public static function _unregister(
int $a_usr_id,
int $a_event_id): bool
391 $ilDB = $DIC->database();
393 $query =
"SELECT * FROM event_participants " .
394 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
395 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
397 if (
$res->numRows()) {
398 $query =
"UPDATE event_participants " .
399 "SET registered = 0 " .
400 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
401 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
403 $query =
"INSERT INTO event_participants (registered,participated,event_id,usr_id) " .
407 $ilDB->quote($a_event_id,
'integer') .
", " .
408 $ilDB->quote($a_usr_id,
'integer') .
" " .
420 return self::_unregister($a_usr_id, $this->
getEventId());
423 public static function _lookupMark(
int $a_event_id,
int $a_usr_id): string
425 $lp_mark =
new ilLPMarks($a_event_id, $a_usr_id);
426 return $lp_mark->getMark();
431 $lp_mark =
new ilLPMarks($a_event_id, $a_usr_id);
432 return $lp_mark->getComment();
439 $ilDB = $DIC->database();
441 $query =
"DELETE FROM event_participants " .
442 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" ";
454 $ilDB = $DIC->database();
456 $query =
"DELETE FROM event_participants " .
457 "WHERE usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
470 $query =
"SELECT * FROM event_participants " .
471 "WHERE event_id = " .
$ilDB->quote($this->
getEventId(),
'integer') .
" ";
474 $parentRecipients = [];
475 $parentParticipants = [];
478 if (
true ===
$session->isRegistrationNotificationEnabled()) {
486 $parentRecipients = $participants->getNotificationRecipients();
487 $parentParticipants = $participants->getParticipants();
492 $this->participants[(
int) $row->usr_id][
'usr_id'] = (
int) $row->usr_id;
493 $this->participants[(
int) $row->usr_id][
'registered'] = (
bool) $row->registered;
494 $this->participants[(
int) $row->usr_id][
'participated'] = (
bool) $row->participated;
495 $this->participants[(
int) $row->usr_id][
'excused'] = (
bool) $row->excused;
496 $this->participants[(
int) $row->usr_id][
'contact'] = (
bool) $row->contact;
499 $this->participants[(
int) $row->usr_id][
'mark'] = $lp_mark->getMark();
500 $this->participants[(
int) $row->usr_id][
'comment'] = $lp_mark->getComment();
503 $session->isRegistrationNotificationEnabled() &&
506 $this->participants[(
int) $row->usr_id][
'notification_enabled'] = (
bool) $row->notification_enabled;
507 } elseif (in_array((
int) $row->usr_id, $parentRecipients)) {
508 $this->participants[(
int) $row->usr_id][
'notification_enabled'] =
true;
510 $this->participants[(
int) $row->usr_id][
'notification_enabled'] =
false;
512 if ($row->registered) {
513 $this->participants_registered[] = (
int) $row->usr_id;
515 if ($row->participated) {
516 $this->participants_participated[] = (
int) $row->usr_id;
520 foreach ($parentParticipants as $usr_id) {
521 if (isset($this->participants[$usr_id])) {
524 $this->participants[$usr_id][
'usr_id'] = (
int) $usr_id;
525 $this->participants[$usr_id][
'registered'] =
false;
526 $this->participants[$usr_id][
'participated'] =
false;
527 $this->participants[$usr_id][
'excused'] =
false;
528 $this->participants[$usr_id][
'contact'] =
false;
530 $this->participants[$usr_id][
'mark'] = $lp_mark->getMark();
531 $this->participants[$usr_id][
'comment'] = $lp_mark->getComment();
532 $this->participants[$usr_id][
'notification_enabled'] =
false;
533 if (in_array($usr_id, $parentRecipients)) {
534 $this->participants[$usr_id][
'notification_enabled'] =
true;
_lookupComment(int $a_event_id, int $a_usr_id)
setContact(bool $a_status)
const NOTIFICATION_INHERIT_OPTION
array $participants_participated
setRegisteredParticipants(array $registered_participants)
static _lookupMark(int $a_event_id, int $a_usr_id)
setNotificationEnabled(bool $value)
static _getParticipated(int $a_event_id)
static getInstance(int $a_ref_id)
static _getAllReferences(int $id)
get all reference ids for object ID
static _register(int $a_usr_id, int $a_event_id)
getRegisteredParticipants()
hasParticipated(int $a_usr_id)
static _deleteByUser(int $a_usr_id)
setEventId(int $a_event_id)
isRegistered(int $a_usr_id)
static _hasParticipated(int $a_usr_id, int $a_event_id)
checkForParentType(int $a_ref_id, string $a_type, bool $a_exclude_source_check=false)
Check for parent type e.g check if a folder (ref_id 3) is in a parent course obj => checkForParentTyp...
setRegistered(bool $a_status)
static deleteObject(int $a_obj_id)
static _isRegistered(int $a_usr_id, int $a_event_id)
setParticipated(bool $a_status)
setComment(string $a_comment)
static _deleteByEvent(int $a_event_id)
static _unregister(int $a_usr_id, int $a_event_id)
static _updateParticipation(int $a_usr_id, int $a_event_id, bool $a_status)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
unregister(int $a_usr_id)
__construct(int $a_event_id)
updateExcusedForUser(int $a_usr_id, bool $a_status)
setParticipatedParticipants(array $participants_participated)
static _getRegistered(int $a_event_id)
updateParticipation(int $a_usr_id, bool $a_status)
getParticipatedParticipants()
const NOTIFICATION_MANUAL_OPTION
array $participants_registered
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
bool $notificationEnabled