19 declare(strict_types=1);
47 $this->ilErr = $DIC[
'ilErr'];
48 $this->db = $DIC->database();
49 $this->tree = $DIC->repositoryTree();
50 $this->
lng = $DIC->language();
52 $this->appointment_id = $a_appointment_id;
60 $ilDB = $DIC->database();
62 $query =
"SELECT * FROM event_appointment " .
63 "WHERE event_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" ";
66 $info[
'fullday'] = $row->fulltime;
69 $info[
'start'] = $date->getUnixTime();
71 $info[
'end'] = $date->getUnixTime();
85 $tree = $DIC->repositoryTree();
86 $ilDB = $DIC->database();
91 foreach ($sessions as $tree_data) {
92 $obj_ids[] = $tree_data[
'obj_id'];
94 if (!count($obj_ids)) {
100 $tomorrow = clone $now;
103 $query =
"SELECT event_id FROM event_appointment " .
104 "WHERE e_start > " .
$ilDB->quote($now->get(
IL_CAL_DATE),
'timestamp') .
' ' .
105 "AND e_start < " .
$ilDB->quote($tomorrow->get(
IL_CAL_DATE),
'timestamp') .
' ' .
106 "AND " .
$ilDB->in(
'event_id', $obj_ids,
false,
'integer') .
' ' .
113 $event_ids[] = $row->event_id;
116 if (count($event_ids)) {
121 $query =
"SELECT event_id FROM event_appointment " .
122 "WHERE e_start > " .
$ilDB->now() .
" " .
123 "AND " .
$ilDB->in(
'event_id', $obj_ids,
false,
'integer') .
" " .
125 $ilDB->setLimit(1, 0);
128 $event_id = $row->event_id;
130 return isset($event_id) ? [$event_id] : [];
140 $tree = $DIC->repositoryTree();
141 $ilDB = $DIC->database();
145 foreach ($sessions as $tree_data) {
146 $obj_ids[] = $tree_data[
'obj_id'];
148 if (!count($obj_ids)) {
151 $query =
"SELECT event_id FROM event_appointment " .
152 "WHERE e_start < " .
$ilDB->now() .
" " .
153 "AND " .
$ilDB->in(
'event_id', $obj_ids,
false,
'integer') .
" " .
154 "ORDER BY e_start DESC ";
155 $ilDB->setLimit(1, 0);
158 $event_id = (
int) $row->event_id;
160 return $event_id ?? 0;
175 $this->start = $a_start;
190 $this->appointment_id = $a_appointment_id;
200 $this->session_id = $a_session_id;
209 $this->starting_time = $a_starting_time;
215 return $this->starting_time ?? mktime(8, 0, 0, (
int) date(
'n', time()), (
int) date(
'j', time()), (
int) date(
'Y', time()));
220 $this->ending_time = $a_ending_time;
225 return $this->ending_time ?? mktime(16, 0, 0, (
int) date(
'n', time()), (
int) date(
'j', time()), (
int) date(
'Y', time()));
230 $this->fulltime = $a_status;
246 $start = date($lng->
txt(
'lang_timeformat_no_sec'),
$start);
247 $end = date($lng->
txt(
'lang_timeformat_no_sec'),
$end);
249 return $start .
' - ' .
$end;
256 $lng = $DIC->language();
280 $new_app->setSessionId($new_id);
296 $next_id =
$ilDB->nextId(
'event_appointment');
297 $query =
"INSERT INTO event_appointment (appointment_id,event_id,e_start,e_end,fulltime) " .
299 $ilDB->quote($next_id,
'integer') .
", " .
305 $this->appointment_id = $next_id;
318 $query =
"UPDATE event_appointment " .
329 public function delete():
bool 334 public static function _delete(
int $a_appointment_id): bool
338 $ilDB = $DIC->database();
340 $query =
"DELETE FROM event_appointment " .
341 "WHERE appointment_id = " .
$ilDB->quote($a_appointment_id,
'integer') .
" ";
351 $ilDB = $DIC->database();
353 $query =
"DELETE FROM event_appointment " .
354 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" ";
364 $ilDB = $DIC->database();
366 $query =
"SELECT * FROM event_appointment " .
367 "WHERE event_id = " .
$ilDB->quote($a_event_id,
'integer') .
" " .
368 "ORDER BY starting_time";
375 return $appointments;
380 if ($this->starting_time > $this->ending_time) {
381 $this->ilErr->appendMessage($this->
lng->txt(
'event_etime_smaller_stime'));
395 $query =
"SELECT * FROM event_appointment " .
397 $res = $this->db->query($query);
409 $this->starting_time = (
int) $this->start->getUnixTime();
410 $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.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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)
static _delete(int $a_appointment_id)
static _readAppointmentsBySession(int $a_event_id)
class ilSessionAppointment
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.