19 declare(strict_types=1);
49 $this->db = $DIC->database();
50 $this->tree = $DIC->repositoryTree();
51 $this->event_id = $a_event_id;
57 $this->user_id = $a_usr_id;
65 public function setMark(
string $a_mark): void
67 $this->mark = $a_mark;
87 $this->participated = $a_status;
97 $this->registered = $a_status;
107 $this->excused = $a_stat;
122 $this->event_id = $a_event_id;
127 $this->contact = (
int) $a_status;
142 $this->notificationEnabled = $value;
155 $this->participants_registered = $registered_participants;
164 if (!array_key_exists($a_usr_id, $this->participants)) {
165 $event_part = new \ilEventParticipants($this->event_id);
166 $event_part->setUserId($a_usr_id);
167 $event_part->setMark(
'');
168 $event_part->setComment(
'');
169 $event_part->setNotificationEnabled(
false);
170 $event_part->setParticipated(
false);
171 $event_part->setRegistered(
false);
172 $event_part->setContact(
false);
173 $event_part->setExcused($a_status);
174 $event_part->updateUser();
178 $query =
'update event_participants set excused = ' . $this->db->quote($a_status, \
ilDBConstants::T_INTEGER) .
' ' .
181 $this->db->manipulate($query);
188 $query =
"DELETE FROM event_participants " .
189 "WHERE event_id = " .
$ilDB->quote($this->
getEventId(),
'integer') .
" " .
190 "AND usr_id = " .
$ilDB->quote($this->
getUserId(),
'integer') .
" ";
193 $query =
"INSERT INTO event_participants (event_id,usr_id,registered,participated,contact,notification_enabled, excused " .
207 $lp_mark->setMark($this->
getMark());
217 return $this->participants[$a_usr_id] ?? [];
227 return (
bool) ($this->participants[$a_usr_id][
'registered'] ??
false);
232 return (
bool) ($this->participants[$a_usr_id][
'participated'] ??
false);
237 return (
bool) ($this->participants[$a_usr_id][
'excused'] ??
false);
242 return (
bool) ($this->participants[$a_usr_id][
'contact'] ??
false);
248 return self::_updateParticipation($a_usr_id, $this->
getEventId(), $a_status);
255 $ilDB = $DIC->database();
257 $query =
"SELECT * FROM event_participants " .
258 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
259 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
261 if (
$res->numRows()) {
262 $query =
"UPDATE event_participants " .
263 "SET participated = " .
$ilDB->quote((
int) $a_status,
'integer') .
" " .
264 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
265 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
267 $query =
"INSERT INTO event_participants (registered,participated,event_id,usr_id) " .
269 $ilDB->quote(0,
'integer') .
", " .
270 $ilDB->quote((
int) $a_status,
'integer') .
", " .
271 $ilDB->quote($a_event_id,
'integer') .
", " .
272 $ilDB->quote($a_usr_id,
'integer') .
" " .
287 $ilDB = $DIC->database();
289 $query =
"SELECT * FROM event_participants " .
290 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
291 "AND registered = " .
$ilDB->quote(1,
'integer');
295 $user_ids[] = $row->usr_id;
304 $ilDB = $DIC->database();
306 $query =
"SELECT * FROM event_participants " .
307 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
308 "AND participated = 1";
312 $user_ids[$row->usr_id] = $row->usr_id;
321 $ilDB = $DIC->database();
323 $query =
"SELECT participated FROM event_participants " .
324 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
325 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
328 return (
bool) $rec[
"participated"];
337 $ilDB = $DIC->database();
339 $query =
"SELECT * FROM event_participants " .
340 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
341 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
344 return (
bool) $row->registered;
349 public static function _register(
int $a_usr_id,
int $a_event_id): bool
353 $ilDB = $DIC->database();
355 $query =
"SELECT * FROM event_participants " .
356 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
357 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
359 if (
$res->numRows()) {
360 $query =
"UPDATE event_participants " .
361 "SET registered = '1' " .
362 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
363 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
365 $query =
"INSERT INTO event_participants (registered,participated,event_id,usr_id) " .
369 $ilDB->quote($a_event_id,
'integer') .
", " .
370 $ilDB->quote($a_usr_id,
'integer') .
" " .
381 public function register(
int $a_usr_id):
bool 386 public static function _unregister(
int $a_usr_id,
int $a_event_id): bool
390 $ilDB = $DIC->database();
392 $query =
"SELECT * FROM event_participants " .
393 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
394 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
396 if (
$res->numRows()) {
397 $query =
"UPDATE event_participants " .
398 "SET registered = 0 " .
399 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
400 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
402 $query =
"INSERT INTO event_participants (registered,participated,event_id,usr_id) " .
406 $ilDB->quote($a_event_id,
'integer') .
", " .
407 $ilDB->quote($a_usr_id,
'integer') .
" " .
419 return self::_unregister($a_usr_id, $this->
getEventId());
422 public static function _lookupMark(
int $a_event_id,
int $a_usr_id): string
424 $lp_mark =
new ilLPMarks($a_event_id, $a_usr_id);
425 return $lp_mark->getMark();
430 $lp_mark =
new ilLPMarks($a_event_id, $a_usr_id);
431 return $lp_mark->getComment();
438 $ilDB = $DIC->database();
440 $query =
"DELETE FROM event_participants " .
441 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" ";
453 $ilDB = $DIC->database();
455 $query =
"DELETE FROM event_participants " .
456 "WHERE usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
469 $query =
"SELECT * FROM event_participants " .
470 "WHERE event_id = " .
$ilDB->quote($this->
getEventId(),
'integer') .
" ";
471 $res = $this->db->query($query);
473 $parentRecipients = [];
474 $parentParticipants = [];
477 if (
true === $session->isRegistrationNotificationEnabled()) {
485 $parentRecipients = $participants->getNotificationRecipients();
486 $parentParticipants = $participants->getParticipants();
491 $this->participants[(
int) $row->usr_id][
'usr_id'] = (
int) $row->usr_id;
492 $this->participants[(
int) $row->usr_id][
'registered'] = (
bool) $row->registered;
493 $this->participants[(
int) $row->usr_id][
'participated'] = (
bool) $row->participated;
494 $this->participants[(
int) $row->usr_id][
'excused'] = (
bool) $row->excused;
495 $this->participants[(
int) $row->usr_id][
'contact'] = (
bool) $row->contact;
498 $this->participants[(
int) $row->usr_id][
'mark'] = $lp_mark->getMark();
499 $this->participants[(
int) $row->usr_id][
'comment'] = $lp_mark->getComment();
502 $session->isRegistrationNotificationEnabled() &&
505 $this->participants[(
int) $row->usr_id][
'notification_enabled'] = (
bool) $row->notification_enabled;
506 } elseif (in_array((
int) $row->usr_id, $parentRecipients)) {
507 $this->participants[(
int) $row->usr_id][
'notification_enabled'] =
true;
509 $this->participants[(
int) $row->usr_id][
'notification_enabled'] =
false;
511 if ($row->registered) {
512 $this->participants_registered[] = (
int) $row->usr_id;
514 if ($row->participated) {
515 $this->participants_participated[] = (
int) $row->usr_id;
519 foreach ($parentParticipants as $usr_id) {
520 if (isset($this->participants[$usr_id])) {
523 $this->participants[$usr_id][
'usr_id'] = (
int) $usr_id;
524 $this->participants[$usr_id][
'registered'] =
false;
525 $this->participants[$usr_id][
'participated'] =
false;
526 $this->participants[$usr_id][
'excused'] =
false;
527 $this->participants[$usr_id][
'contact'] =
false;
529 $this->participants[$usr_id][
'mark'] = $lp_mark->getMark();
530 $this->participants[$usr_id][
'comment'] = $lp_mark->getComment();
531 $this->participants[$usr_id][
'notification_enabled'] =
false;
532 if (in_array($usr_id, $parentRecipients)) {
533 $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)
class ilEventParticipants
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