19 declare(strict_types=0);
37 $this->db = $DIC->database();
40 $this->user_id = $a_usr_id;
61 $this->start = $a_time;
89 $query =
"INSERT INTO crs_timings_planed (item_id,usr_id,planed_start,planed_end) " .
91 $this->db->quote($this->
getItemId(),
'integer') .
", " .
92 $this->db->quote($this->
getUserId(),
'integer') .
", " .
96 $res = $this->db->manipulate($query);
99 public function delete():
void 104 public static function _delete(
int $a_item_id,
int $a_usr_id): void
108 $ilDB = $DIC->database();
109 $query =
"DELETE FROM crs_timings_planed " .
110 "WHERE item_id = " .
$ilDB->quote($a_item_id,
'integer') .
" " .
111 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
119 $ilDB = $DIC->database();
121 $query =
"SELECT * FROM crs_timings_planed " .
122 "WHERE item_id = " .
$ilDB->quote($a_item_id,
'integer') .
" " .
123 "AND usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
127 $data[
'planed_start'] = (
int) $row->planed_start;
128 $data[
'planed_end'] = (
int) $row->planed_end;
137 $ilDB = $DIC->database();
138 $query =
"SELECT * FROM crs_timings_planed " .
139 "WHERE item_id = " .
$ilDB->quote($a_item_id,
'integer') .
" ";
143 $data[(
int) $row->usr_id][
'start'] = (
int) $row->planed_start;
144 $data[(
int) $row->usr_id][
'end'] = (
int) $row->planed_end;
153 $ilDB = $DIC->database();
154 $query =
"DELETE FROM crs_timings_planed " .
155 "WHERE item_id = " .
$ilDB->quote($a_item_id,
'integer') .
" ";
163 $ilDB = $DIC->database();
164 $query =
"DELETE FROM crs_timings_planed " .
165 "WHERE usr_id = " .
$ilDB->quote($a_usr_id,
'integer') .
" ";
171 $query =
"SELECT * FROM crs_timings_planed " .
172 "WHERE item_id = " . $this->db->quote($this->
getItemId(),
'integer') .
" " .
173 "AND usr_id = " . $this->db->quote($this->
getUserId(),
'integer') .
" ";
174 $res = $this->db->query($query);
static _getPlanedTimings(int $a_usr_id, int $a_item_id)
setPlanedStartingTime(int $a_time)
static _deleteByItem(int $a_item_id)
static _delete(int $a_item_id, int $a_usr_id)
__construct(int $item_id, int $a_usr_id)
static _getPlanedTimingsByItem($a_item_id)
static _deleteByUser(int $a_usr_id)
static getItem(int $ref_id)
setPlanedEndingTime(int $a_end)