19 declare(strict_types=1);
52 public function __construct(
int $user_id,
string $vm_period,
string $vm_status)
59 $this->static_url_service = $DIC[
'static_url'];
60 $this->ui_factory = $DIC->ui()->factory();
69 protected function read(): void
75 $booked_user_ids = $booking->getCurrentBookings($appointment->getEntryId());
76 if ($this->
isFiltered($appointment, $booking, $booked_user_ids)) {
81 $row[
'id'] = (string) $appointment->getEntryId();
82 $row[
'booking_start'] = (new \DateTimeImmutable())->setTimestamp($appointment->getStart()->getUnixTime());
83 $row[
'booking_duration'] =
84 (
int) ($appointment->getEnd()->getUnixTime() - $appointment->getStart()->getUnixTime()) / 60;
85 $row[
'booking_title'] = $appointment->getTitle();
89 ilUtil::_sortIds($booking->getTargetObjIds(),
'object_data',
'title',
'obj_id')
93 foreach ($obj_ids as $obj_id) {
96 $link = $this->static_url_service->builder()->build(
100 $locations[] = $this->ui_factory->link()->standard(
107 $row[
'booking_location'] = $this->ui_factory->listing()->unordered($locations);
113 foreach ($booked_user_ids as $booked_user_id) {
116 $ui_link = $this->ui_factory->link()->standard(
121 $ui_link = $ui_link->withDisabled(
true);
123 $bookings[] = $ui_link;
126 $appointment->getEntryId(),
130 $ui_link = $this->ui_factory->link()
135 ->withDisabled(
true);
140 $row[
'booking_participant'] = $this->ui_factory->listing()->unordered($bookings);
141 $row[
'booking_comment'] = $this->ui_factory->listing()->unordered(
$comments);
142 $data[$counter++] = $row;
187 [$order_field, $order_direction] = $order->
join([], fn($ret, $key, $value) => [$key, $value]);
188 usort($data, fn(
$a,
$b) =>
$a[$order_field] <=>
$b[$order_field]);
189 if ($order_direction ===
'DESC') {
190 $data = array_reverse($data);
const VIEW_MODE_STATUS_ALL
join($init, callable $fn)
const VIEW_MODE_STATUS_OPEN
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
static _lookupFullname(int $a_user_id)
static _getAllReferences(int $id)
get all reference ids for object ID
static getProfileLink(int $a_usr_id)
Get link to personal profile Return empty string in case of not public profile.
const VIEW_MODE_PERIOD_UPCOMING
const VIEW_MODE_PERIOD_ALL
ILIAS UI Factory $ui_factory
Both the subject and the direction need to be specified when expressing an order. ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const VIEW_MODE_STATUS_BOOKED
static _lookupTitle(int $obj_id)
static _after(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is after end This method does not consider tz offsets.
limitData(Range $range, Order $order)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAppointments(int $a_user_id)
Get all appointments.
StaticURL Services $static_url_service
static _sortIds(array $a_ids, string $a_table, string $a_field, string $a_id_name)
Function that sorts ids by a given table field using WHERE IN E.g: __sort(array(6,7),'usr_data','lastname','usr_id') => sorts by lastname.
getStart()
Get start of date period.
__construct(int $user_id, string $vm_period, string $vm_status)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static lookupBookingMessage(int $a_entry_id, int $a_usr_id)
const VIEW_MODE_PERIOD_PAST
isFiltered(ilCalendarEntry $entry, ilBookingEntry $booking, array $booked_users)
static _lookupType(int $id, bool $reference=false)
A simple class to express a naive range of whole positive numbers.