67 array $a_filter_pre = null,
73 $this->ctrl = $DIC->ctrl();
74 $this->lng = $DIC->language();
75 $this->
user = $DIC->user();
76 $this->access = $DIC->access();
77 $ilCtrl = $DIC->ctrl();
78 $lng = $DIC->language();
80 $ilAccess = $DIC->access();
81 $this->tree = $DIC->repositoryTree();
84 $this->pool_id = $a_pool_id;
85 $this->ref_id = $a_ref_id;
86 $this->show_all = $a_show_all;
87 $this->has_schedule = (bool) $a_has_schedule;
88 $this->group_id = $a_group_id;
92 $this->
setId(
"bkrsv" . $a_ref_id);
99 $this->
addColumn($this->lng->txt(
"title"),
"title");
104 if ($this->has_schedule) {
105 $this->lng->loadLanguageModule(
"dateplaner");
107 $this->
addColumn($this->lng->txt(
"date"),
"date");
108 if (in_array(
"week", $selected)) {
109 $this->
addColumn($this->lng->txt(
"wk_short"),
"week");
110 unset(
$cols[
"week"]);
112 if (in_array(
"weekday", $selected)) {
113 $this->
addColumn($this->lng->txt(
"cal_weekday"),
"weekday");
114 unset(
$cols[
"weekday"]);
116 $this->
addColumn($this->lng->txt(
"book_schedule_slot"),
"slot");
117 $this->
addColumn($this->lng->txt(
"book_no_of_objects"),
"counter");
122 $this->
addColumn($this->lng->txt(
"status"),
"status");
131 if (array_key_exists($col,
$cols)) {
132 if (!isset($user_cols[$col])) {
141 if ($this->group_id) {
144 $this->filters = array();
150 if ($this->has_items_with_host_context) {
151 $this->
addColumn($this->lng->txt(
"book_booked_in"),
"context_obj_title");
154 $this->
addColumn($this->lng->txt(
"user"),
"user_name");
158 if (array_key_exists($col,
$cols)) {
159 if (isset($user_cols[$col])) {
165 $this->
addColumn($this->lng->txt(
"actions"));
168 $this->
setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
169 $this->
setRowTemplate(
"tpl.booking_reservation_row.html",
"Modules/BookingManager/Reservations");
177 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
191 if ($this->has_schedule &&
192 !(
bool) $a_only_advmd) {
193 $this->lng->loadLanguageModule(
"dateplaner");
195 $cols[
"week"] = array(
196 "txt" => $this->lng->txt(
"wk_short"),
200 $cols[
"weekday"] = array(
201 "txt" => $this->lng->txt(
"cal_weekday"),
206 foreach ($this->advmd as $field) {
207 $cols[
"advmd" . $field[
"id"]] = array(
208 "txt" => $field[
"title"],
213 if ($a_include_user) {
231 if ($this->access->checkAccess(
"manage_members",
"", $parent[
"ref_id"])) {
234 if (!in_array($k, [
"login"])) {
254 if (isset($user_cols[$col])) {
271 if (($par_ref_id =
$tree->checkForParentType($this->ref_id,
"grp")) > 0) {
273 "ref_id" => $par_ref_id,
277 if (($par_ref_id =
$tree->checkForParentType($this->ref_id,
"crs")) > 0) {
279 "ref_id" => $par_ref_id,
293 if (is_array($a_filter_pre) &&
294 isset($a_filter_pre[
"object"])) {
295 $_SESSION[
"form_" . $this->
getId()][
"object"] = serialize($a_filter_pre[
"object"]);
298 $this->objects = array();
300 $this->objects[$item[
"booking_object_id"]] = $item[
"title"];
303 $item->setOptions(array(
"" => $this->lng->txt(
'book_all')) + $this->objects);
304 $this->
filter[
"object"] = $item->getValue();
310 $this->lng->txt(
"object") .
" " . $this->lng->txt(
"title") .
"/" . $this->lng->txt(
"description")
314 if ($this->has_schedule) {
322 $period = $bpool->getReservationFilterPeriod();
323 if ($period !== null) {
328 $to = serialize($to);
332 "from" => serialize($from),
337 $this->filter[
"fromto"] = $item->getDate();
340 if ($this->show_all) {
342 $map = array_flip(array(
'su',
'mo',
'tu',
'we',
'th',
'fr',
'sa'));
344 $options = array(
"" => $this->lng->txt(
'book_all'));
349 foreach ($schedule->getDefinition() as $day => $slots) {
352 foreach ($slots as $slot) {
353 $idx = $map[$day] .
"_" . $slot;
354 $options[$idx] = $day_caption .
", " . $slot;
362 $item->setOptions($options);
363 $this->filter[
"slot"] = $item->getValue();
367 $item =
new ilCheckboxInputGUI($this->lng->txt(
"book_filter_past_reservations"),
"past");
369 $item->readFromSession();
373 if (is_object($this->filter[
"fromto"][
"from"]) &&
374 $this->filter[
"fromto"][
"from"]->
get(
IL_CAL_DATE) < date(
"Y-m-d")) {
375 $item->setChecked(
true);
378 $this->filter[
"past"] = $item->getChecked();
383 if (!$this->has_schedule) {
384 $options = array(
"" => $this->lng->txt(
'book_all'));
388 foreach ($valid_status as $loop) {
390 $options[$loop] = $this->lng->txt(
'book_reservation_status_' . $loop);
392 $options[$loop] = $this->lng->txt(
'book_not') .
' ' . $this->lng->txt(
'book_reservation_status_' . -$loop);
396 $item->setOptions($options);
397 $this->filter[
"status"] = $item->getValue();
400 if ($this->show_all) {
401 $options = array(
"" => $this->lng->txt(
'book_all')) +
404 $item->setOptions($options);
405 if (is_array($a_filter_pre) && isset($a_filter_pre[
"user_id"])) {
406 $item->setValue($a_filter_pre[
"user_id"]);
407 $this->filter[
"user_id"] = $a_filter_pre[
"user_id"];
409 $this->filter[
"user_id"] = $item->getValue();
421 if ($this->
filter[
"object"]) {
424 if ($this->
filter[
"title"]) {
427 if ($this->
filter[
"status"]) {
430 if ($this->
filter[
"user_id"]) {
433 if (is_array($this->context_obj_ids)) {
437 if ($this->has_schedule) {
442 if ($this->
filter[
"slot"]) {
446 if ($this->
filter[
"fromto"][
"from"] || $this->
filter[
"fromto"][
"to"]) {
447 if ($this->
filter[
"fromto"][
"from"]) {
450 if ($this->
filter[
"fromto"][
"to"]) {
464 return in_array($a_field, array(
"counter",
"date",
"week",
"weekday"));
475 $this->has_items_with_host_context =
false;
477 if (!$filter[
"object"]) {
478 $ids = array_keys($this->objects);
480 $ids = array($filter[
"object"]);
483 if (!$this->show_all) {
484 $filter[
"user_id"] =
$ilUser->getId();
488 $repo =
$f->getRepo();
489 $data = $repo->getListByDate($this->has_schedule, $ids, $filter);
493 $this->record_gui->setTableGUI($this);
494 $this->record_gui->parse();
496 foreach (array_keys(
$data) as $idx) {
509 $this->record_gui->getFilterElements()
515 $user_ids = array_unique(array_map(
function (
$d) {
516 return $d[
'user_id'];
522 if (substr($field, 0, 3) ==
'odf') {
523 $odf_ids[] = substr($field, 4);
525 $user_columns[] = $field;
530 $user_columns = array_diff(
532 [
'consultation_hour',
'prtf',
'roles',
'org_units']
538 $query->setAdditionalFields($user_columns);
539 $query->setUserFilter($user_ids);
542 foreach ($ud[
"set"] as $v) {
543 foreach ($user_columns as
$c) {
544 $usr_data[$v[
"usr_id"]][
$c] = $v[
$c];
547 foreach (
$data as $key => $v) {
548 if (isset($usr_data[$v[
"user_id"]])) {
549 $data[$key] = array_merge($v, $usr_data[$v[
"user_id"]]);
559 $confirmation_required = ($parent_obj_type ==
'crs')
562 if ($confirmation_required) {
568 foreach ($odf_data as $usr_id => $fields) {
569 if (in_array($usr_id, $user_ids)) {
570 foreach ($fields as $field_id => $value) {
571 if (in_array($field_id, $odf_ids)) {
572 $usr_data[$usr_id][
'odf_' . $field_id] = $value;
578 foreach (
$data as $key => $v) {
579 if (isset($usr_data[$v[
"user_id"]])) {
580 $data[$key] = array_merge($v, $usr_data[$v[
"user_id"]]);
587 if (
$d[
"context_obj_id"] > 0) {
588 $this->has_items_with_host_context =
true;
598 return $this->record_gui;
603 $field = parent::getOrderField();
606 if (in_array($field, array(
"date",
"week"))) {
607 $field =
"_sortdate";
628 if ($this->has_items_with_host_context) {
629 $this->tpl->setCurrentBlock(
"context");
630 $this->tpl->setVariable(
"VALUE_CONTEXT_TITLE", $a_set[
"context_obj_title"] .
" ");
631 $this->tpl->parseCurrentBlock();
634 $this->tpl->setVariable(
"TXT_TITLE", $a_set[
"title"]);
636 $can_be_cancelled = (($ilAccess->checkAccess(
'write',
'', $this->ref_id) ||
637 $a_set[
'user_id'] ==
$ilUser->getId()) &&
638 $a_set[
"can_be_cancelled"]);
640 if ($can_be_cancelled) {
641 $this->tpl->setVariable(
"MULTI_ID", $a_set[
"booking_reservation_id"]);
645 $uname = $a_set[
"user_name"];
647 $uname =
"[" .
$lng->txt(
"user_deleted") .
"]";
651 $this->tpl->setVariable(
"TXT_CURRENT_USER", $uname);
653 if ($this->has_schedule) {
655 if (in_array(
"week", $selected)) {
656 $this->tpl->setVariable(
"VALUE_WEEK", $a_set[
"week"]);
658 if (in_array(
"weekday", $selected)) {
661 $this->tpl->setVariable(
"VALUE_SLOT", $a_set[
"slot"]);
662 $this->tpl->setVariable(
"VALUE_COUNTER", $a_set[
"counter"]);
665 $this->tpl->setVariable(
"TXT_STATUS",
$lng->txt(
'book_reservation_status_' . $a_set[
'status']));
667 $this->tpl->setVariable(
"TXT_STATUS",
" ");
672 foreach ($this->advmd as $item) {
673 $advmd_id = (int) $item[
"id"];
675 if (!in_array(
"advmd" . $advmd_id, $selected)) {
680 if (isset($a_set[
"md_" . $advmd_id .
"_presentation"])) {
681 $pb = $a_set[
"md_" . $advmd_id .
"_presentation"]->getList();
687 $this->tpl->setCurrentBlock(
"advmd_bl");
688 $this->tpl->setVariable(
"VALUE_ADVMD", $val);
689 $this->tpl->parseCurrentBlock();
696 if (isset($user_cols[$col])) {
697 $this->tpl->setCurrentBlock(
"user_col");
698 $this->tpl->setVariable(
"VALUE_USER_COL", $a_set[$col] .
" ");
699 $this->tpl->parseCurrentBlock();
703 if ($can_be_cancelled) {
704 $ilCtrl->setParameter($this->parent_obj,
'reservation_id', $a_set[
'booking_reservation_id']);
705 $this->tpl->setVariable(
"URL_ACTION", $ilCtrl->getLinkTarget($this->parent_obj,
'rsvConfirmCancel'));
706 $ilCtrl->setParameter($this->parent_obj,
'reservation_id',
"");
707 $this->tpl->setVariable(
"TXT_ACTION",
$lng->txt(
'book_set_cancel'));
708 $this->tpl->setCurrentBlock(
"action");
709 $this->tpl->parseCurrentBlock();
713 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
714 $ilCtrl->setParameter($this->parent_obj,
'reservation_id', $a_set[
'booking_reservation_id']);
715 $this->tpl->setVariable(
"URL_ACTION", $ilCtrl->getLinkTarget($this->parent_obj,
'rsvConfirmDelete'));
716 $ilCtrl->setParameter($this->parent_obj,
'reservation_id',
"");
717 $this->tpl->setVariable(
"TXT_ACTION",
$lng->txt(
'delete'));
718 $this->tpl->setCurrentBlock(
"action");
719 $this->tpl->parseCurrentBlock();
731 unset(
$cols[
"week"]);
732 unset(
$cols[
"weekday"]);
737 if (array_key_exists($col,
$cols)) {
738 if (!isset($user_cols[$col])) {
739 $add_cols[$col] =
$cols[$col][
"txt"];
744 $add_cols[
"user_name"] = $this->lng->txt(
"user");
745 $add_cols[
"login"] = $this->lng->txt(
"login");
749 if (array_key_exists($col,
$cols)) {
750 if (isset($user_cols[$col])) {
751 $add_cols[$col] =
$cols[$col][
"txt"];
761 $a_excel->
setCell($a_row, 0, $this->lng->txt(
"title"));
763 if ($this->has_schedule) {
764 $a_excel->
setCell($a_row, ++$col, $this->lng->txt(
"date"));
765 $a_excel->
setCell($a_row, ++$col, $this->lng->txt(
"wk_short"));
766 $a_excel->
setCell($a_row, ++$col, $this->lng->txt(
"cal_weekday"));
767 $a_excel->
setCell($a_row, ++$col, $this->lng->txt(
"book_schedule_slot"));
768 $a_excel->
setCell($a_row, ++$col, $this->lng->txt(
"book_no_of_objects"));
770 $a_excel->
setCell($a_row, ++$col, $this->lng->txt(
"status"));
782 $a_excel->
setCell($a_row, 0, $a_set[
"title"]);
784 if ($this->has_schedule) {
786 $a_excel->
setCell($a_row, ++$col, $a_set[
"week"]);
788 $a_excel->
setCell($a_row, ++$col, $a_set[
"slot"]);
789 $a_excel->
setCell($a_row, ++$col, $a_set[
"counter"]);
793 $status = $this->lng->txt(
'book_reservation_status_' . $a_set[
'status']);
795 $a_excel->
setCell($a_row, ++$col, $status);
799 if (substr($colid, 0, 5) ==
"advmd") {
800 $advmd_id = (int) substr($colid, 5);
802 if (isset($a_set[
"md_" . $advmd_id .
"_presentation"])) {
803 $pb = $a_set[
"md_" . $advmd_id .
"_presentation"]->getList();
808 $a_excel->
setCell($a_row, ++$col, $val);
810 $a_excel->
setCell($a_row, ++$col, $a_set[$colid]);
817 $a_csv->addColumn($this->lng->txt(
"title"));
818 if ($this->has_schedule) {
819 $a_csv->addColumn($this->lng->txt(
"date"));
820 $a_csv->addColumn($this->lng->txt(
"wk_short"));
821 $a_csv->addColumn($this->lng->txt(
"cal_weekday"));
822 $a_csv->addColumn($this->lng->txt(
"book_schedule_slot"));
823 $a_csv->addColumn($this->lng->txt(
"book_no_of_objects"));
825 $a_csv->addColumn($this->lng->txt(
"status"));
829 $a_csv->addColumn(
$txt);
837 $a_csv->addColumn($a_set[
"title"]);
838 if ($this->has_schedule) {
840 $a_csv->addColumn($a_set[
"week"]);
842 $a_csv->addColumn($a_set[
"slot"]);
843 $a_csv->addColumn($a_set[
"counter"]);
847 $status = $this->lng->txt(
'book_reservation_status_' . $a_set[
'status']);
849 $a_csv->addColumn($status);
853 if (substr($colid, 0, 5) ==
"advmd") {
854 $advmd_id = (int) substr($colid, 5);
856 if (isset($a_set[
"md_" . $advmd_id .
"_presentation"])) {
857 $pb = $a_set[
"md_" . $advmd_id .
"_presentation"]->getList();
862 $a_csv->addColumn($val);
864 $a_csv->addColumn($a_set[$colid]);
getSelectedUserColumns()
Get selected user colimns.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
initFilter(array $a_filter_pre=null)
Init filter.
setExportFormats(array $formats)
Set available export formats.
fillRowCSV($a_csv, $a_set)
numericOrdering($a_field)
static getList($a_pool_id, $a_title=null)
Get list of booking objects for given type.
static _numericDayToString($a_day, $a_long=true)
get
static getUserFilter(array $a_object_ids)
Get all users who have reservations for object(s)
getParentGroupCourse()
Get parent group or course.
getSelectableColumns()
Get selectable columns.
static _getValuesByObjId($a_obj_id)
Get values by obj_id (for all users)
getSelectableUserColumns()
Get selectable user fields.
getItems(array $filter)
Gather data and build rows.
schedule for booking ressource
addFilterItemByMetaType($id, $type=self::FILTER_TEXT, $a_optional=false, $caption=null)
Add filter by standard type.
getAdditionalExportCols()
Get additional export columns.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
static setUseRelativeDates($a_status)
set use relative dates
static _lookupTitle($a_id)
lookup object title
$has_items_with_host_context
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static _lookupObjectId($a_ref_id)
lookup object id
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setResetCommand($a_val, $a_caption=null)
Set reset filter command.
getColumnCoord($a_col)
Get column "name" from number.
setBold($a_coords)
Set cell(s) to bold.
getSelectableColumns($a_only_advmd=false, $a_include_user=true)
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
getCurrentFilter()
Get current filter settings.
static _getInstanceByType($a_type)
Get Singleton Instance.
fillHeaderExcel(ilExcel $a_excel, &$a_row)
setDisableFilterHiding($a_val=true)
Set disable filter hiding.
addMultiCommand($a_cmd, $a_text)
Add Command button.
getSelectedColumns()
Get selected columns.
setCell($a_row, $a_col, $a_value, $a_datatype=null)
Set cell value.
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _lookupType($a_id, $a_reference=false)
lookup object type
fillRow($a_set)
Fill table row.
Factory for reservation repo.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
disable($a_module_name)
diesables particular modules of table
fillRowExcel(ilExcel $a_excel, &$a_row, $a_set)
__construct( $a_parent_obj, $a_parent_cmd, $a_ref_id, $a_pool_id, $a_show_all, $a_has_schedule, array $a_filter_pre=null, $a_group_id=null, array $context_obj_ids=null)
Constructor.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setEnableHeader($a_enableheader)
Set Enable Header.
static _getInstance()
Get instance of ilPrivacySettings.
static getList($a_pool_id)
Get list of booking objects for given pool.
static getAdvancedMDFields($a_ref_id)
static lookupAcceptedAgreements($a_obj_id)
Lookup users who have accepted the agreement.
static queryForRecords($adv_rec_obj_ref_id, $adv_rec_obj_type, $adv_rec_obj_subtype, $a_obj_id, $a_subtype, $a_records, $a_obj_id_key, $a_obj_subid_key, array $a_amet_filter=null)
Query data for given object records.
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
setLimit($a_limit=0, $a_default_limit=0)
setFilterCommand($a_val, $a_caption=null)
Set filter command.