3 declare(strict_types=1);
48 $this->ilErr = $DIC[
'ilErr'];
49 $this->db = $DIC->database();
50 $this->tree = $DIC->repositoryTree();
51 $this->
lng = $DIC->language();
53 $this->appointment_id = $a_appointment_id;
61 $ilDB = $DIC->database();
63 $query =
"SELECT * FROM event_appointment " .
64 "WHERE event_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" ";
67 $info[
'fullday'] = $row->fulltime;
70 $info[
'start'] = $date->getUnixTime();
72 $info[
'end'] = $date->getUnixTime();
86 $tree = $DIC->repositoryTree();
87 $ilDB = $DIC->database();
92 foreach ($sessions as $tree_data) {
93 $obj_ids[] = $tree_data[
'obj_id'];
95 if (!count($obj_ids)) {
101 $tomorrow = clone $now;
104 $query =
"SELECT event_id FROM event_appointment " .
105 "WHERE e_start > " .
$ilDB->quote($now->get(
IL_CAL_DATE),
'timestamp') .
' ' .
106 "AND e_start < " .
$ilDB->quote($tomorrow->get(
IL_CAL_DATE),
'timestamp') .
' ' .
107 "AND " .
$ilDB->in(
'event_id', $obj_ids,
false,
'integer') .
' ' .
114 $event_ids[] = $row->event_id;
117 if (count($event_ids)) {
122 $query =
"SELECT event_id FROM event_appointment " .
123 "WHERE e_start > " .
$ilDB->now() .
" " .
124 "AND " .
$ilDB->in(
'event_id', $obj_ids,
false,
'integer') .
" " .
126 $ilDB->setLimit(1, 0);
129 $event_id = $row->event_id;
131 return isset($event_id) ? [$event_id] : [];
141 $tree = $DIC->repositoryTree();
142 $ilDB = $DIC->database();
146 foreach ($sessions as $tree_data) {
147 $obj_ids[] = $tree_data[
'obj_id'];
149 if (!count($obj_ids)) {
152 $query =
"SELECT event_id FROM event_appointment " .
153 "WHERE e_start < " .
$ilDB->now() .
" " .
154 "AND " .
$ilDB->in(
'event_id', $obj_ids,
false,
'integer') .
" " .
155 "ORDER BY e_start DESC ";
156 $ilDB->setLimit(1, 0);
159 $event_id = (
int) $row->event_id;
161 return $event_id ?? 0;
176 $this->start = $a_start;
191 $this->appointment_id = $a_appointment_id;
201 $this->session_id = $a_session_id;
210 $this->starting_time = $a_starting_time;
216 return $this->starting_time ?? mktime(8, 0, 0, (
int) date(
'n', time()), (
int) date(
'j', time()), (
int) date(
'Y', time()));
221 $this->ending_time = $a_ending_time;
226 return $this->ending_time ?? mktime(16, 0, 0, (
int) date(
'n', time()), (
int) date(
'j', time()), (
int) date(
'Y', time()));
231 $this->fulltime = $a_status;
247 $start = date($lng->
txt(
'lang_timeformat_no_sec'),
$start);
248 $end = date($lng->
txt(
'lang_timeformat_no_sec'),
$end);
250 return $start .
' - ' .
$end;
257 $lng = $DIC->language();
281 $new_app->setSessionId($new_id);
297 $next_id =
$ilDB->nextId(
'event_appointment');
298 $query =
"INSERT INTO event_appointment (appointment_id,event_id,e_start,e_end,fulltime) " .
300 $ilDB->quote($next_id,
'integer') .
", " .
306 $this->appointment_id = $next_id;
319 $query =
"UPDATE event_appointment " .
330 public function delete():
bool 335 public static function _delete(
int $a_appointment_id): bool
339 $ilDB = $DIC->database();
341 $query =
"DELETE FROM event_appointment " .
342 "WHERE appointment_id = " .
$ilDB->quote($a_appointment_id,
'integer') .
" ";
352 $ilDB = $DIC->database();
354 $query =
"DELETE FROM event_appointment " .
355 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" ";
365 $ilDB = $DIC->database();
367 $query =
"SELECT * FROM event_appointment " .
368 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
369 "ORDER BY starting_time";
376 return $appointments;
381 if ($this->starting_time > $this->ending_time) {
382 $this->ilErr->appendMessage($this->
lng->txt(
'event_etime_smaller_stime'));
396 $query =
"SELECT * FROM event_appointment " .
410 $this->starting_time = (
int) $this->start->getUnixTime();
411 $this->ending_time = (
int) $this->end->getUnixTime();
static _deleteBySession(int $a_event_id)
setStartingTime(int $a_starting_time)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
__construct(int $a_appointment_id=0)
setStart(ilDateTime $a_start)
setAppointmentId(int $a_appointment_id)
setEnd(ilDateTime $a_end)
timeToString(int $start, int $end)
setEndingTime(int $a_ending_time)
getStart()
Get start of date period.
getChildsByType(int $a_node_id, string $a_type)
get child nodes of given node by object type
static lookupNextSessionByCourse(int $a_ref_id)
static _lookupAppointment(int $a_obj_id)
setSessionId(int $a_session_id)
getEnd()
Get end of period.
static lookupLastSessionByCourse(int $a_ref_id)
toggleFullTime(bool $a_status)
isFullday()
is event a fullday period
static _appointmentToString(int $start, int $end, bool $fulltime)
Error Handling & global info handling uses PEAR error class.
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false)
Format a period of two dates Shows: 14.
static _delete(int $a_appointment_id)
static _readAppointmentsBySession(int $a_event_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...