19 declare(strict_types=1);
36 $this->appointment_id = $a_appointment_id;
38 $this->db = $DIC->database();
47 $query =
"DELETE FROM cal_registrations " .
48 "WHERE usr_id = " .
$ilDB->quote($a_usr_id,
'integer');
49 $ilDB->manipulate($query);
57 $query =
"DELETE FROM cal_registrations " .
58 "WHERE cal_id = " .
$ilDB->quote($a_cal_id,
'integer');
59 $ilDB->manipulate($query);
70 foreach ($this->registered as $reg_data) {
75 $users[] = (
int) $reg_data[
'usr_id'];
83 foreach ($this->registered as $reg_data) {
84 if ($reg_data[
'usr_id'] == $a_usr_id) {
97 $query =
"INSERT INTO cal_registrations (cal_id,usr_id,dstart,dend) " .
100 $this->db->quote($a_usr_id,
'integer') .
", " .
101 $this->db->quote($start->get(
IL_CAL_UNIX),
'integer') .
", " .
102 $this->db->quote($end->get(
IL_CAL_UNIX),
'integer') .
104 $this->db->manipulate($query);
105 $this->registered[] = [
106 'usr_id' => $a_usr_id,
117 $query =
"DELETE FROM cal_registrations " .
118 "WHERE cal_id = " . $this->db->quote($this->
getAppointmentId(),
'integer') .
' ' .
119 "AND usr_id = " . $this->db->quote($a_usr_id,
'integer') .
' ' .
120 "AND dstart = " . $this->db->quote($start->
get(
IL_CAL_UNIX),
'integer') .
' ' .
121 "AND dend = " . $this->db->quote($end->
get(
IL_CAL_UNIX),
'integer');
122 $res = $this->db->manipulate($query);
128 protected function read(): void
134 $query =
"SELECT * FROM cal_registrations WHERE cal_id = " . $this->db->quote(
138 $res = $this->db->query($query);
140 $this->registered[] = array(
141 'usr_id' => (
int) $row->usr_id,
142 'dstart' => (
int) $row->dstart,
143 'dend' => (
int) $row->dend
get(int $a_format, string $a_format_str='', string $a_tz='')
get formatted date
unregister(int $a_usr_id, ilDateTime $start, ilDateTime $end)
unregister one user
static deleteByUser(int $a_usr_id)
registration for calendar appointments
__construct(int $a_appointment_id)
isRegistered($a_usr_id, ilDateTime $start, ilDateTime $end)
getRegisteredUsers(\ilDateTime $start, \ilDateTime $end)
static deleteByAppointment(int $a_cal_id)