51 array $a_filter_pre = null,
52 int $a_group_id = null,
53 array $context_obj_ids = null
57 $this->
ctrl = $DIC->ctrl();
58 $this->
lng = $DIC->language();
59 $this->
user = $DIC->user();
60 $this->
access = $DIC->access();
61 $ilCtrl = $DIC->ctrl();
62 $lng = $DIC->language();
64 $this->tree = $DIC->repositoryTree();
67 $this->pool_id = $a_pool_id;
68 $this->ref_id = $a_ref_id;
69 $this->show_all = $a_show_all;
70 $this->has_schedule = $a_has_schedule;
71 $this->group_id = $a_group_id;
73 $this->table_repo = $DIC->bookingManager()
80 $this->
setId(
"bkrsv" . $a_ref_id);
89 $this->
lng->loadLanguageModule(
"crs");
94 if ($this->has_schedule) {
95 $this->
lng->loadLanguageModule(
"dateplaner");
98 if (in_array(
"week", $selected,
true)) {
100 unset(
$cols[
"week"]);
102 if (in_array(
"weekday", $selected,
true)) {
103 $this->
addColumn($this->
lng->txt(
"cal_weekday"),
"weekday");
104 unset(
$cols[
"weekday"]);
106 $this->
addColumn($this->
lng->txt(
"book_schedule_slot"),
"slot");
107 $this->
addColumn($this->
lng->txt(
"book_no_of_objects"),
"counter");
120 if (array_key_exists($col,
$cols)) {
121 if (!isset($user_cols[$col])) {
130 if ($this->group_id) {
133 $this->filters = array();
139 if ($this->has_items_with_host_context) {
140 $this->
addColumn($this->
lng->txt(
"book_booked_in"),
"context_obj_title");
147 if (array_key_exists($col,
$cols)) {
148 if (isset($user_cols[$col])) {
157 $this->
setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
158 $this->
setRowTemplate(
"tpl.booking_reservation_row.html",
"Modules/BookingManager/Reservations");
166 if ($this->
access->checkAccess(
'write',
'', $this->ref_id)) {
180 if ($this->has_schedule) {
181 $this->
lng->loadLanguageModule(
"dateplaner");
183 $cols[
"week"] = array(
184 "txt" => $this->
lng->txt(
"wk_short"),
188 $cols[
"weekday"] = array(
189 "txt" => $this->
lng->txt(
"cal_weekday"),
194 foreach ($this->advmd as $field) {
195 $cols[
"advmd" . $field[
"id"]] = array(
196 "txt" => $field[
"title"],
214 if ($this->
access->checkAccess(
"manage_members",
"", $parent[
"ref_id"])) {
217 if ($k !==
"login") {
231 if (isset($user_cols[$col])) {
243 "ref_id" => $par_ref_id,
249 "ref_id" => $par_ref_id,
257 array $a_filter_pre = null
259 if (is_array($a_filter_pre) &&
260 isset($a_filter_pre[
"object"])) {
261 $this->table_repo->setObjectFilter(
263 serialize($a_filter_pre[
"object"])
267 $this->objects = array();
269 $this->objects[$item[
"booking_object_id"]] = $item[
"title"];
272 if ($item !== null) {
273 $item->setOptions(array(
"" => $this->
lng->txt(
'book_all')) + $this->objects);
274 $this->
filter[
"object"] = $item->getValue();
279 $this->
lng->txt(
"object") .
" " . $this->
lng->txt(
"title") .
"/" . $this->
lng->txt(
"description")
285 if ($this->has_schedule) {
287 if (!$this->table_repo->hasFromToFilter($this->getId())) {
293 $period = $bpool->getReservationFilterPeriod();
294 if ($period !== null) {
299 $to = serialize($to);
302 $this->table_repo->setFromToFilter(
305 "from" => serialize($from),
311 $this->
filter[
"fromto"] = $item->getDate();
314 if ($this->show_all) {
316 $map = array_flip(array(
'su',
'mo',
'tu',
'we',
'th',
'fr',
'sa'));
318 $options = array(
"" => $this->
lng->txt(
'book_all'));
323 foreach ($schedule->getDefinition() as $day => $slots) {
326 foreach ($slots as $slot) {
327 $idx = $map[$day] .
"_" . $slot;
328 $options[$idx] = $day_caption .
", " . $slot;
336 $item->setOptions($options);
337 $this->filter[
"slot"] = $item->getValue();
343 $item->readFromSession();
347 if (isset($this->
filter[
"fromto"][
"from"]) &&
349 $item->setChecked(
true);
352 $this->
filter[
"past"] = $item->getChecked();
357 if (!$this->has_schedule) {
358 $options = array(
"" => $this->
lng->txt(
'book_all'));
362 foreach ($valid_status as $loop) {
364 $options[$loop] = $this->
lng->txt(
'book_reservation_status_' . $loop);
366 $options[$loop] = $this->
lng->txt(
'book_not') .
' ' . $this->
lng->txt(
'book_reservation_status_' . -$loop);
370 $item->setOptions($options);
371 $this->
filter[
"status"] = $item->getValue();
374 if ($this->show_all) {
375 $options = array(
"" => $this->
lng->txt(
'book_all')) +
378 $item->setOptions($options);
379 if (is_array($a_filter_pre) && isset($a_filter_pre[
"user_id"])) {
380 $item->setValue($a_filter_pre[
"user_id"]);
381 $this->
filter[
"user_id"] = $a_filter_pre[
"user_id"];
383 $this->
filter[
"user_id"] = $item->getValue();
395 if ($this->
filter[
"object"]) {
396 $filter[
"object"] = $this->
filter[
"object"];
398 if ($this->
filter[
"title"]) {
399 $filter[
"title"] = $this->
filter[
"title"];
401 if ($this->
filter[
"status"]) {
402 $filter[
"status"] = $this->
filter[
"status"];
404 if ($this->
filter[
"user_id"] ??
false) {
405 $filter[
"user_id"] = $this->
filter[
"user_id"];
407 if (!is_null($this->context_obj_ids)) {
411 if ($this->has_schedule) {
412 if (!isset($filter[
"status"])) {
416 if ($this->
filter[
"slot"] ??
false) {
417 $filter[
"slot"] = $this->
filter[
"slot"];
420 if ($this->
filter[
"fromto"][
"from"] || $this->
filter[
"fromto"][
"to"]) {
421 if ($this->
filter[
"fromto"][
"from"]) {
424 if ($this->
filter[
"fromto"][
"to"]) {
430 $filter[
"past"] = (bool) $this->
filter[
"past"];
437 return in_array($a_field, array(
"counter",
"date",
"week",
"weekday"));
447 $this->has_items_with_host_context =
false;
449 if (!isset($filter[
"object"])) {
450 $ids = array_keys($this->objects);
452 $ids = array($filter[
"object"]);
455 if (!$this->show_all) {
456 $filter[
"user_id"] =
$ilUser->getId();
460 $repo =
$f->getRepo();
461 $data = $repo->getListByDate($this->has_schedule, $ids, $filter);
471 $this->record_gui->setTableGUI($this);
472 $this->record_gui->parse();
474 foreach (array_keys(
$data) as $idx) {
487 $this->record_gui->getFilterElements()
493 $user_ids = array_unique(array_map(
static function (
$d) {
494 return $d[
'user_id'];
500 if (strpos($field,
'odf') === 0) {
501 $odf_ids[] = substr($field, 4);
503 $user_columns[] = $field;
508 $user_columns = array_diff(
510 [
'consultation_hour',
'prtf',
'roles',
'org_units']
516 $query->setAdditionalFields($user_columns);
517 $query->setUserFilter($user_ids);
520 foreach ($ud[
"set"] as $v) {
521 foreach ($user_columns as
$c) {
522 $usr_data[$v[
"usr_id"]][
$c] = $v[
$c];
526 if (isset($usr_data[$v[
"user_id"]])) {
527 $data[
$key] = array_merge($v, $usr_data[$v[
"user_id"]]);
537 $confirmation_required = ($parent_obj_type ===
'crs')
540 if ($confirmation_required) {
545 foreach ($odf_data as $usr_id => $fields) {
548 if (in_array($usr_id, $user_ids)) {
549 foreach ($fields as $field_id => $value) {
550 if (in_array($field_id, $odf_ids,
true)) {
551 $usr_data[$usr_id][
'odf_' . $field_id] = $value;
558 if (isset($usr_data[$v[
"user_id"]])) {
559 $data[
$key] = array_merge($v, $usr_data[$v[
"user_id"]]);
566 if (
$d[
"context_obj_id"] > 0) {
567 $this->has_items_with_host_context =
true;
582 $field = parent::getOrderField();
585 if (in_array($field, array(
"date",
"week"))) {
586 $field =
"_sortdate";
592 protected function fillRow(array $a_set): void
601 if ($this->has_items_with_host_context) {
602 $this->tpl->setCurrentBlock(
"context");
603 $this->tpl->setVariable(
"VALUE_CONTEXT_TITLE", ($a_set[
"context_obj_title"] ??
"") .
" ");
604 $this->tpl->parseCurrentBlock();
607 $this->tpl->setVariable(
"TXT_TITLE", $a_set[
"title"]);
609 $can_be_cancelled = (($ilAccess->checkAccess(
'write',
'', $this->ref_id) ||
610 $a_set[
'user_id'] ==
$ilUser->getId()) &&
611 $a_set[
"can_be_cancelled"]);
613 if ($can_be_cancelled) {
614 $this->tpl->setVariable(
"MULTI_ID", $a_set[
"booking_reservation_id"]);
618 $uname = $a_set[
"user_name"];
620 $uname =
"[" .
$lng->
txt(
"user_deleted") .
"]";
624 $this->tpl->setVariable(
"TXT_CURRENT_USER", $uname);
626 if ($this->has_schedule) {
628 if (in_array(
"week", $selected,
true)) {
629 $this->tpl->setVariable(
"VALUE_WEEK", $a_set[
"week"]);
631 if (in_array(
"weekday", $selected,
true)) {
634 $this->tpl->setVariable(
"VALUE_SLOT", $a_set[
"slot"]);
635 $this->tpl->setVariable(
"VALUE_COUNTER", $a_set[
"counter"]);
640 $this->tpl->setVariable(
"TXT_STATUS",
$lng->
txt(
'book_reservation_status_' . $a_set[
'status']));
642 $this->tpl->setVariable(
"TXT_STATUS",
" ");
646 foreach ($this->advmd as $item) {
647 $advmd_id = (
int) $item[
"id"];
649 if (!in_array(
"advmd" . $advmd_id, $selected,
true)) {
654 $key =
"md_" . $advmd_id .
"_presentation";
655 if (isset($a_set[
$key])) {
656 $pb = $a_set[
$key]->getList();
662 $this->tpl->setCurrentBlock(
"advmd_bl");
663 $this->tpl->setVariable(
"VALUE_ADVMD", $val);
664 $this->tpl->parseCurrentBlock();
671 if (isset($user_cols[$col])) {
672 $this->tpl->setCurrentBlock(
"user_col");
673 $this->tpl->setVariable(
"VALUE_USER_COL", ($a_set[$col] ??
"") .
" ");
674 $this->tpl->parseCurrentBlock();
678 if ($can_be_cancelled) {
679 $ilCtrl->setParameter($this->parent_obj,
'reservation_id', $a_set[
'booking_reservation_id']);
680 $this->tpl->setVariable(
"URL_ACTION", $ilCtrl->getLinkTarget($this->parent_obj,
'rsvConfirmCancel'));
681 $ilCtrl->setParameter($this->parent_obj,
'reservation_id',
"");
682 $this->tpl->setVariable(
"TXT_ACTION",
$lng->
txt(
'book_set_cancel'));
683 $this->tpl->setCurrentBlock(
"action");
684 $this->tpl->parseCurrentBlock();
688 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
689 $ilCtrl->setParameter($this->parent_obj,
'reservation_id', $a_set[
'booking_reservation_id']);
690 $this->tpl->setVariable(
"URL_ACTION", $ilCtrl->getLinkTarget($this->parent_obj,
'rsvConfirmDelete'));
691 $ilCtrl->setParameter($this->parent_obj,
'reservation_id',
"");
692 $this->tpl->setVariable(
"TXT_ACTION",
$lng->
txt(
'delete'));
693 $this->tpl->setCurrentBlock(
"action");
694 $this->tpl->parseCurrentBlock();
708 if (array_key_exists($col,
$cols)) {
709 if (!isset($user_cols[$col])) {
710 $add_cols[$col] =
$cols[$col][
"txt"];
715 $add_cols[
"user_name"] = $this->
lng->txt(
"user");
716 $add_cols[
"login"] = $this->
lng->txt(
"login");
720 if (array_key_exists($col,
$cols)) {
721 if (isset($user_cols[$col])) {
722 $add_cols[$col] =
$cols[$col][
"txt"];
734 $a_excel->
setCell($a_row, 0, $this->
lng->txt(
"title"));
736 if ($this->has_schedule) {
737 $a_excel->
setCell($a_row, ++$col, $this->
lng->txt(
"date"));
738 $a_excel->
setCell($a_row, ++$col, $this->
lng->txt(
"wk_short"));
739 $a_excel->
setCell($a_row, ++$col, $this->
lng->txt(
"cal_weekday"));
740 $a_excel->
setCell($a_row, ++$col, $this->
lng->txt(
"book_schedule_slot"));
741 $a_excel->
setCell($a_row, ++$col, $this->
lng->txt(
"book_no_of_objects"));
743 $a_excel->
setCell($a_row, ++$col, $this->
lng->txt(
"status"));
758 $a_excel->
setCell($a_row, 0, $a_set[
"title"]);
760 if ($this->has_schedule) {
762 $a_excel->
setCell($a_row, ++$col, $a_set[
"week"]);
764 $a_excel->
setCell($a_row, ++$col, $a_set[
"slot"]);
765 $a_excel->
setCell($a_row, ++$col, $a_set[
"counter"]);
769 $status = $this->
lng->txt(
'book_reservation_status_' . $a_set[
'status']);
771 $a_excel->
setCell($a_row, ++$col, $status);
775 if (str_starts_with($colid,
"advmd")) {
777 $key =
"md_" . (
int) substr($colid, 5) .
"_presentation";
778 if (isset($a_set[
$key])) {
779 $pb = $a_set[
$key]->getList();
784 $a_excel->
setCell($a_row, ++$col, $val);
786 $a_excel->
setCell($a_row, ++$col, $a_set[$colid]);
795 if ($this->has_schedule) {
799 $a_csv->
addColumn($this->
lng->txt(
"book_schedule_slot"));
800 $a_csv->
addColumn($this->
lng->txt(
"book_no_of_objects"));
817 if ($this->has_schedule) {
826 $status = $this->
lng->txt(
'book_reservation_status_' . $a_set[
'status']);
832 if (str_starts_with($colid,
"advmd")) {
834 $key =
"md_" . (
int) substr($colid, 5) .
"_presentation";
835 if (isset($a_set[
$key])) {
836 $pb = $a_set[
$key]->getList();
ReservationTableSessionRepository $table_repo
initFilter(array $a_filter_pre=null)
setExportFormats(array $formats)
Set available export formats.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
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...
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
static getUserFilter(array $a_object_ids)
Get all users who have reservations for object(s)
fillRowExcel(ilExcel $a_excel, int &$a_row, array $a_set)
setResetCommand(string $a_val, string $a_caption="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
getSelectableUserColumns()
Get selectable user fields.
getItems(array $filter)
Gather data and build rows.
getColumnCoord(int $a_col)
Get column "name" from number.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
bool $has_items_with_host_context
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
setDisableFilterHiding(bool $a_val=true)
static _getValuesByObjId(int $a_obj_id)
static getList(int $a_pool_id)
Get list of booking objects for given pool.
getAdditionalExportCols()
static getAdvancedMDFields(int $a_ref_id)
setCell(int $a_row, int $a_col, $a_value, ?string $a_datatype=null)
Set cell value.
fillRowCSV(ilCSVWriter $a_csv, array $a_set)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilAdvancedMDRecordGUI $record_gui
__construct(object $a_parent_obj, string $a_parent_cmd, int $a_ref_id, int $a_pool_id, bool $a_show_all, bool $a_has_schedule, array $a_filter_pre=null, int $a_group_id=null, array $context_obj_ids=null)
checkForParentType(int $a_ref_id, string $a_type, bool $a_exclude_source_check=false)
Check for parent type e.g check if a folder (ref_id 3) is in a parent course obj => checkForParentTyp...
addFilterItemByMetaType(string $id, int $type=self::FILTER_TEXT, bool $a_optional=false, string $caption="")
Add filter by standard type.
setBold(string $a_coords)
Set cell(s) to bold.
fillHeaderExcel(ilExcel $a_excel, int &$a_row)
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
getCurrentFilter()
Get current filter settings.
Reservation table related session data.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
setDefaultOrderDirection(string $a_defaultorderdirection)
static _lookupObjectId(int $ref_id)
fillHeaderCSV(ilCSVWriter $a_csv)
static _numericDayToString(int $a_day, bool $a_long=true)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getInstanceByType(string $a_type)
Get Singleton Instance.
static queryForRecords(int $adv_rec_obj_ref_id, string $adv_rec_obj_type, string $adv_rec_obj_subtype, array $a_obj_id, string $a_subtype, array $a_records, string $a_obj_id_key, string $a_obj_subid_key, array $a_amet_filter=null)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
static lookupAcceptedAgreements(int $a_obj_id)
Lookup users who have accepted the agreement.
static _lookupType(int $id, bool $reference=false)
static setUseRelativeDates(bool $a_status)
set use relative dates
addMultiCommand(string $a_cmd, string $a_text)
static getList(int $a_pool_id, string $a_title=null)
Get list of booking objects.
setEnableHeader(bool $a_enableheader)
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
numericOrdering(string $a_field)