3 declare(strict_types=0);
41 $this->db = $DIC->database();
43 $this->ref_id = $a_ref_id;
44 $this->usr_id = $a_usr_id;
89 $query =
'INSERT INTO crs_timings_user (ref_id, usr_id, sstart, ssend ) VALUES ( ' .
90 $this->db->quote($this->
getRefId(),
'integer') .
', ' .
91 $this->db->quote($this->
getUserId(),
'integer') .
', ' .
95 $this->db->manipulate(
$query);
96 $this->is_scheduled =
true;
106 $query =
'UPDATE crs_timings_user ' .
107 'SET sstart = ' . $this->db->quote($this->
getStart()->
get(
IL_CAL_UNIX),
'integer') .
', ' .
108 'ssend = ' . $this->db->quote($this->
getEnd()->
get(
IL_CAL_UNIX),
'integer') .
' ' .
109 'WHERE ref_id = ' . $this->db->quote($this->
getRefId(),
'integer') .
' ' .
110 'AND usr_id = ' . $this->db->quote($this->
getUserId(),
'integer');
111 $this->db->manipulate(
$query);
114 public function delete():
void 116 $query =
'DELETE FROM crs_timings_user ' .
' ' .
117 'WHERE ref_id = ' . $this->db->quote($this->
getRefId(),
'integer') .
' ' .
118 'AND usr_id = ' . $this->db->quote($this->
getUserId(),
'integer');
119 $this->db->manipulate(
$query);
120 $this->is_scheduled =
false;
125 $query =
'SELECT * FROM crs_timings_user ' .
126 'WHERE ref_id = ' . $this->db->quote($this->
getRefId(),
'integer') .
' ' .
127 'AND usr_id = ' . $this->db->quote($this->
getUserId(),
'integer');
130 $this->is_scheduled =
true;
getStart()
Use to set start date.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $a_ref_id, int $a_usr_id)