3 declare(strict_types=1);
48 0 => self::TYPE_GLOBAL,
57 protected int $type = self::TYPE_USR;
74 $this->db = $DIC->database();
75 $this->cat_id = $a_cat_id;
88 $query =
"SELECT cat_id FROM cal_categories " .
89 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" " .
90 "AND type = " .
$ilDB->quote(self::TYPE_OBJ,
'integer');
100 if (!isset(self::$instances[$a_cat_id])) {
103 return self::$instances[$a_cat_id];
111 return (
int) array_search($a_type_id, self::$SORTED_TYPES);
122 $ilDB = $DIC[
'ilDB'];
123 $query =
"SELECT * FROM cal_cat_assignments " .
124 'WHERE cat_id = ' .
$ilDB->quote($a_category_id,
'integer');
128 $apps[] = (
int) $row->cal_id;
140 $this->title = $a_title;
150 $this->color = $a_color;
160 $this->type = $a_type;
170 $this->obj_id = $a_obj_id;
190 $this->location = $a_type;
195 $this->remote_url = $a_url;
205 $this->remote_user = $a_user;
215 $this->remote_pass = $a_pass;
228 $this->remote_sync = $dt;
236 if ($this->remote_sync instanceof
ilDateTime) {
239 return new ilDateTime();
244 $next_id = $this->db->nextId(
'cal_categories');
245 $query =
"INSERT INTO cal_categories (cat_id,obj_id,color,type,title,loc_type,remote_url,remote_user,remote_pass,remote_sync) " .
247 $this->db->quote($next_id,
'integer') .
", " .
248 $this->db->quote($this->
getObjId(),
'integer') .
", " .
249 $this->db->quote($this->
getColor(),
'text') .
", " .
250 $this->db->quote($this->
getType(),
'integer') .
", " .
251 $this->db->quote($this->
getTitle(),
'text') .
", " .
253 $this->db->quote($this->
getRemoteUrl(),
'text') .
', ' .
262 $this->db->manipulate(
$query);
264 $this->cat_id = $next_id;
270 $query =
"UPDATE cal_categories " .
271 "SET obj_id = " . $this->db->quote($this->
getObjId(),
'integer') .
", " .
272 "color = " . $this->db->quote($this->
getColor(),
'text') .
", " .
273 "type = " . $this->db->quote($this->
getType(),
'integer') .
", " .
274 "title = " . $this->db->quote($this->
getTitle(),
'text') .
", " .
275 "loc_type = " . $this->db->quote($this->
getLocationType(),
'integer') .
', ' .
276 "remote_url = " . $this->db->quote($this->
getRemoteUrl(),
'text') .
', ' .
277 "remote_user = " . $this->db->quote($this->
getRemoteUser(),
'text') .
', ' .
278 "remote_pass = " . $this->db->quote($this->
getRemotePass(),
'text') .
', ' .
283 ),
'timestamp') .
' ' .
284 "WHERE cat_id = " . $this->db->quote($this->cat_id,
'integer') .
" ";
288 public function delete():
void 290 $query =
"DELETE FROM cal_categories " .
291 "WHERE cat_id = " . $this->db->quote($this->cat_id,
'integer') .
" ";
315 if (!$this->cat_id) {
319 $query =
"SELECT * FROM cal_categories " .
320 "WHERE cat_id = " . $this->db->quote($this->
getCategoryID(),
'integer') .
" ";
323 $this->cat_id = (
int) $row->cat_id;
324 $this->obj_id = (
int) $row->obj_id;
325 $this->type = (
int) $row->type;
326 $this->color = (
string) $row->color;
327 $this->title = (string) $row->title;
328 $this->location = (
int) $row->loc_type;
329 $this->remote_url = (string) $row->remote_url;
330 $this->remote_user = (
string) $row->remote_user;
331 $this->remote_pass = (string) $row->remote_pass;
333 if ($row->remote_sync) {
339 if ($this->
getType() == self::TYPE_OBJ) {
setTitle(string $a_title)
setRemoteSyncLastExecution(ilDateTime $dt)
Set remote sync last execution.
getRemoteSyncLastExecution()
Get last execution date of remote sync.
setColor(string $a_color)
Stores calendar categories.
static _getInstanceByObjId(int $a_obj_id)
get instance by obj_id
static _delete(int $a_entry_id)
static _deleteCategories(int $a_cat_id)
setRemoteUrl(string $a_url)
if(!file_exists(getcwd() . '/ilias.ini.php'))
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
static array $SORTED_TYPES
setRemotePass(string $a_pass)
setRemoteUser(string $a_user)
__construct(int $a_cat_id=0)
static lookupCategorySortIndex(int $a_type_id)
Lookup sort index of calendar type.
static lookupAppointments(int $a_category_id)
get all assigned appointment ids
static getInstanceByCategoryId(int $a_cat_id)
static _getAssignedAppointments(array $a_cat_id)
Get assigned apointments.
static _deleteByCategoryId(int $a_cat_id)
Delete assignments by category id public.
static _lookupType(int $id, bool $reference=false)
setLocationType(int $a_type)