46 int $booking_object_id,
50 int $context_obj_id = 0
55 $this->
ctrl = $DIC->ctrl();
56 $this->tpl = $DIC[
"tpl"];
57 $this->
lng = $DIC->language();
58 $this->
access = $DIC->access();
59 $this->tabs_gui = $DIC->tabs();
60 $this->
user = $DIC->user();
71 $this->book_request = $DIC->bookingManager()
76 $this->rsv_ids = $this->book_request->getReservationIdsFromString();
78 $this->raw_post_data = $DIC->http()->request()->getParsedBody();
80 $this->user_id_assigner = $this->
user->getId();
81 if ($this->book_request->getBookedUser() > 0) {
82 $this->user_id_to_book = $this->book_request->getBookedUser();
86 $this->
ctrl->saveParameter($this, [
"bkusr"]);
94 $cmd = $ctrl->
getCmd(
"show");
95 switch ($next_class) {
97 if (in_array($cmd, array(
"book",
"back",
99 "bookMultipleParticipants",
100 "saveMultipleBookings",
102 "confirmBookingNumbers",
103 "confirmedBookingNumbers",
113 protected function back(): void
115 $this->
ctrl->returnToParent($this);
120 $this->
help->setHelpId($a_id);
127 if (!$ilAccess->checkAccess($a_perm,
"", $this->pool->getRefId())) {
136 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_permission"),
true);
153 $this->tabs_gui->clearTargets();
154 $this->tabs_gui->setBackTarget($this->
lng->txt(
'book_back_to_list'), $this->
ctrl->getLinkTarget($this,
'back'));
160 $this->
lng->loadLanguageModule(
"dateplaner");
161 $this->
ctrl->setParameter($this,
'object_id', $obj->getId());
163 if ($this->user_id_to_book !== $this->user_id_assigner) {
164 $this->
ctrl->setParameter($this,
'bkusr', $this->user_id_to_book);
170 $tpl->
setContent($this->renderSlots($schedule, array($obj->getId()), $obj->getTitle()));
173 $cgui->setHeaderText($this->
lng->txt(
"book_confirm_booking_no_schedule"));
175 $cgui->setFormAction($this->
ctrl->getFormAction($this));
176 $cgui->setCancel($this->
lng->txt(
"cancel"),
"back");
177 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"confirmedBooking");
179 $cgui->addItem(
"object_id", $obj->getId(), $obj->getTitle());
185 protected function renderSlots(
194 $mytpl =
new ilTemplate(
'tpl.booking_reservation_fix.html',
true,
true,
'Modules/BookingManager');
196 $mytpl->setVariable(
'FORM_ACTION', $this->
ctrl->getFormAction($this));
197 $mytpl->setVariable(
'TXT_TITLE', $this->
lng->txt(
'book_reservation_title'));
198 $mytpl->setVariable(
'TXT_INFO', $this->
lng->txt(
'book_reservation_fix_info'));
199 $mytpl->setVariable(
'TXT_OBJECT', $title);
200 $mytpl->setVariable(
'TXT_CMD_BOOK', $this->
lng->txt(
'book_confirm_booking'));
201 $mytpl->setVariable(
'TXT_CMD_CANCEL', $this->
lng->txt(
'cancel'));
205 $morning_aggr = $user_settings->getDayStart();
206 $evening_aggr = $user_settings->getDayEnd();
208 for (
$i = $morning_aggr;
$i <= $evening_aggr;
$i++) {
210 switch ($user_settings->getTimeFormat()) {
212 if ($morning_aggr > 0 &&
$i === $morning_aggr) {
213 $hours[
$i] = sprintf(
'%02d:00', 0) .
"-";
215 $hours[
$i] .= sprintf(
'%02d:00',
$i);
216 if ($evening_aggr < 23 &&
$i === $evening_aggr) {
217 $hours[
$i] .=
"-" . sprintf(
'%02d:00', 23);
222 if ($morning_aggr > 0 &&
$i === $morning_aggr) {
223 $hours[
$i] = date(
'h a', mktime(0, 0, 0, 1, 1, 2000)) .
"-";
225 $hours[
$i] .= date(
'h a', mktime(
$i, 0, 0, 1, 1, 2000));
226 if ($evening_aggr < 23 &&
$i === $evening_aggr) {
227 $hours[
$i] .=
"-" . date(
'h a', mktime(23, 0, 0, 1, 1, 2000));
233 if ($this->seed !==
"") {
234 $find_first_open =
false;
237 $find_first_open =
true;
238 $seed = ($this->sseed !==
"")
243 $week_start = $user_settings->getWeekStart();
246 if (!$find_first_open) {
247 $this->buildDatesBySchedule($week_start, $hours, $schedule, $object_ids, $seed, $dates);
251 $has_open_slot = $this->buildDatesBySchedule($week_start, $hours, $schedule, $object_ids, $seed, $dates);
254 if (!$has_open_slot) {
256 $limit = clone($seed);
260 while (!$has_open_slot && $seed->get(
IL_CAL_UNIX) < $limit) {
264 $has_open_slot = $this->buildDatesBySchedule($week_start, $hours, $schedule, $object_ids, $seed, $dates);
270 $mytpl->setVariable(
'NAVIGATION', $navigation->getHTML());
276 $mytpl->setCurrentBlock(
'weekdays');
279 $mytpl->parseCurrentBlock();
284 for ($loop = 0; $loop < 7; $loop++) {
287 $color[$loop + 1] =
'border-bottom: 1px solid ' . $col .
'; background-color: ' . $col .
'; color: ' . $fnt;
291 foreach ($dates as $hour => $days) {
293 $caption = array_shift($caption);
295 for ($loop = 1; $loop < 8; $loop++) {
296 if (!isset($days[$loop])) {
297 $mytpl->setCurrentBlock(
'dates');
298 $mytpl->setVariable(
'DUMMY',
' ');
299 } elseif (isset($days[$loop][
'captions'])) {
300 foreach ($days[$loop][
'captions'] as $slot_id => $slot_caption) {
301 $mytpl->setCurrentBlock(
'choice');
302 $mytpl->setVariable(
'TXT_DATE', $slot_caption);
303 $mytpl->setVariable(
'VALUE_DATE', $slot_id);
304 $mytpl->setVariable(
'DATE_COLOR', $color[$loop]);
308 $this->
lng->txt(
'book_reservation_available'),
309 $days[$loop][
'available'][$slot_id]
312 $mytpl->parseCurrentBlock();
315 $mytpl->setCurrentBlock(
'dates');
316 $mytpl->setVariable(
'DUMMY',
'');
317 } elseif (isset($days[$loop][
'in_slot'])) {
318 $mytpl->setCurrentBlock(
'dates');
319 $mytpl->setVariable(
'DATE_COLOR', $color[$loop]);
321 $mytpl->setCurrentBlock(
'dates');
322 $mytpl->setVariable(
'DUMMY',
' ');
324 $mytpl->parseCurrentBlock();
327 $mytpl->setCurrentBlock(
'slots');
328 $mytpl->setVariable(
'TXT_HOUR', $caption);
330 $mytpl->setVariable(
'CSS_ROW',
'tblrow1');
332 $mytpl->setVariable(
'CSS_ROW',
'tblrow2');
334 $mytpl->parseCurrentBlock();
338 return $mytpl->get();
344 protected function buildDatesBySchedule(
356 $map = array(
'mo',
'tu',
'we',
'th',
'fr',
'sa',
'su');
366 $has_open_slot =
false;
372 if ($av_from || $av_to) {
375 if ($av_from && $av_from > $today) {
379 if ($av_to && $av_to < $today) {
385 if (isset($definition[$map[$date_info[
'isoday'] - 1]])) {
387 foreach ($definition[$map[$date_info[
'isoday'] - 1]] as $slot) {
388 $slot = explode(
'-', $slot);
389 $slots[] = array(
'from' => str_replace(
':',
'', $slot[0]),
390 'to' => str_replace(
':',
'', $slot[1]));
394 $slot_captions = array();
395 foreach ($hours as $hour => $period) {
396 $dates[$hour][0] = $period;
398 $period = explode(
"-", $period);
402 $period[0] = date(
"H", strtotime($period[0]));
403 if (count($period) === 2) {
404 $period[1] = date(
"H", strtotime($period[1]));
408 $period_from = (
int) substr($period[0], 0, 2) .
"00";
409 if (count($period) === 1) {
410 $period_to = (
int) substr($period[0], 0, 2) .
"59";
412 $period_to = (
int) substr($period[1], 0, 2) .
"59";
415 $column = $date_info[
'isoday'];
426 foreach ($slots as $slot) {
427 $slot_from = mktime(substr($slot[
'from'], 0, 2), substr($slot[
'from'], 2, 2), 0, $date_info[
"mon"], $date_info[
"mday"], $date_info[
"year"]);
428 $slot_to = mktime(substr($slot[
'to'], 0, 2), substr($slot[
'to'], 2, 2), 0, $date_info[
"mon"], $date_info[
"mday"], $date_info[
"year"]);
434 if (!array_sum($nr_available)) {
441 if ($slot_from < (time() + $schedule->
getDeadline() * 60 * 60)) {
444 } elseif ($slot_to < time()) {
449 if ((
int) $slot[
'from'] < $period_to && (
int) $slot[
'to'] > $period_from) {
451 $from_a = explode(
' ', $from);
452 $from = array_pop($from_a);
454 $to_a = explode(
' ', $to);
455 $to = array_pop($to_a);
458 $id = $slot_from .
'_' . $slot_to;
459 if (!in_array(
$id, $slot_captions)) {
460 $dates[$hour][$column][
'captions'][
$id] = $from .
'-' . $to;
461 $dates[$hour][$column][
'available'][
$id] = array_sum($nr_available);
462 $slot_captions[] =
$id;
470 $has_open_slot =
true;
471 $dates[$hour][$column][
'in_slot'] =
true;
477 return $has_open_slot;
489 $this->tabs_gui->clearTargets();
490 $this->tabs_gui->setBackTarget($this->
lng->txt(
'book_back_to_list'), $this->
ctrl->getLinkTarget($this,
'back'));
494 $this->tpl->setContent($table->getHTML());
502 $participants = $this->book_request->getParticipants();
503 if (count($participants) === 0) {
508 $this->tabs_gui->clearTargets();
509 $this->tabs_gui->setBackTarget($this->
lng->txt(
"back"), $this->
ctrl->getLinkTarget($this,
'assignparticipants'));
512 $conf->setFormAction($this->
ctrl->getFormAction($this));
515 foreach ($participants as
$id) {
517 $conf->addItem(
"participants[]", $id,
$name);
521 if (count($participants) > $available) {
523 $conf->setHeaderText(
525 $this->
lng->txt(
'book_limit_objects_available'),
526 count($participants),
532 $conf->setHeaderText($this->
lng->txt(
'book_confirm_booking_no_schedule'));
533 $conf->addHiddenItem(
"object_id", $this->book_obj_id);
534 $conf->setConfirm($this->
lng->txt(
"assign"),
"saveMultipleBookings");
537 $conf->setCancel($this->
lng->txt(
"cancel"),
'redirectToList');
538 $this->tpl->setContent($conf->getHTML());
543 $this->
ctrl->redirect($this,
'assignParticipants');
552 $participants = $this->book_request->getParticipants();
553 $object_id = $this->book_request->getObjectId();
554 if (count($participants) > 0 && $object_id > 0) {
555 $this->book_obj_id = $object_id;
560 foreach ($participants as
$id) {
561 $this->user_id_to_book =
$id;
565 if (count($rsv_ids)) {
566 $this->tpl->setOnScreenMessage(
'success',
"booking_multiple_succesfully");
568 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'book_reservation_failed_overbooked'),
true);
585 if ($this->book_obj_id > 0) {
591 $success = $object_id;
594 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'book_reservation_failed_overbooked'),
true);
595 $this->
ctrl->redirect($this,
'back');
600 $dates = $this->book_request->getDates();
601 if (count($dates) === 0) {
602 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
608 if ($this->book_obj_id > 0) {
617 $repo =
$f->getRepo();
618 $group_id = $repo->getNewGroupId();
619 foreach ($dates as $date) {
620 $fromto = explode(
'_', $date);
621 $from = (
int) $fromto[0];
622 $to = (
int) $fromto[1] - 1;
625 $counter = $counter[$object_id];
628 $confirm[$object_id .
"_" . $from .
"_" . ($to + 1)] = $counter;
633 if (count($confirm)) {
644 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'book_reservation_failed'),
true);
645 $this->
ctrl->redirect($this,
'book');
667 int $a_group_id = null
673 $reservation->setObjectId($a_object_id);
674 $reservation->setUserId($this->user_id_to_book);
675 $reservation->setAssignerId($this->user_id_assigner);
676 $reservation->setFrom((
int) $a_from);
677 $reservation->setTo((
int) $a_to);
678 $reservation->setGroupId((
int) $a_group_id);
679 $reservation->setContextObjId($this->context_obj_id);
680 $reservation->save();
683 $this->
lng->loadLanguageModule(
'dateplaner');
691 $entry->setTitle($this->
lng->txt(
'book_cal_entry') .
' ' . $object->getTitle());
692 $entry->setContextId($reservation->getId());
696 if ($def_cat !== null) {
701 return $reservation->getId();
709 array $a_objects_counter,
715 $this->tabs_gui->clearTargets();
716 $this->tabs_gui->setBackTarget($this->
lng->txt(
'book_back_to_list'), $this->
ctrl->getLinkTarget($this,
'back'));
730 array $a_objects_counter,
732 bool $a_reload =
false,
733 ?array $new_values = null
736 $form->setFormAction($this->
ctrl->getFormAction($this,
"confirmedBooking"));
737 $form->setTitle($this->
lng->txt(
"book_confirm_booking_schedule_number_of_objects"));
738 $form->setDescription($this->
lng->txt(
"book_confirm_booking_schedule_number_of_objects_info"));
742 foreach ($a_objects_counter as
$id => $counter) {
744 $book_id =
$id[0] .
"_" .
$id[1] .
"_" .
$id[2] .
"_" . $counter;
750 $section->setTitle($obj->getTitle());
751 $form->addItem($section);
763 $nr_field->setValue(1);
764 $nr_field->setSize(3);
765 $nr_field->setMaxValue($counter);
766 $nr_field->setMinValue($counter ? 1 : 0);
767 $nr_field->setRequired(
true);
768 if (!is_null($new_values) && isset($new_values[
"conf_nr__" . $book_id])) {
769 $nr_field->setRequestParam(
770 "conf_nr__" . $book_id,
771 $new_values[
"conf_nr__" . $book_id]
774 $form->addItem($nr_field);
776 if (!$min_date ||
$id[1] < $min_date) {
782 $this->
lng->loadLanguageModule(
"dateplaner");
784 $rec_mode->setRequired(
true);
785 $rec_mode->setOptions(array(
786 "-1" => $this->
lng->txt(
"cal_no_recurrence"),
787 1 => $this->
lng->txt(
"cal_weekly"),
788 2 => $this->
lng->txt(
"r_14"),
789 4 => $this->
lng->txt(
"r_4_weeks")
791 $form->addItem($rec_mode);
795 $rec_mode->addSubItem($rec_end);
799 $rec_mode->setHideSubForm(
true,
'>= 1');
806 $rec_mode->setDisabled(
true);
807 $rec_end->setDisabled(
true);
812 $grp->setValue($a_group_id);
813 $form->addItem($grp);
816 if ($this->user_id_assigner !== $this->user_id_to_book) {
818 $usr->setValue($this->user_id_to_book);
819 $form->addItem($usr);
822 $form->addCommandButton(
"confirmedBookingNumbers", $this->
lng->txt(
"confirm"));
823 $form->addCommandButton(
"back", $this->
lng->txt(
"cancel"));
832 if ($this->book_request->getBookedUser() > 0) {
833 $this->user_id_to_book = $this->book_request->getBookedUser();
838 $current_first = $obj_id = null;
839 foreach (array_keys($this->raw_post_data) as
$id) {
840 if (str_starts_with($id,
"conf_nr__")) {
841 $id = explode(
"_", substr($id, 9));
842 $counter[$id[0] .
"_" . $id[1] .
"_" . $id[2]] = (
int) $id[3];
843 if (!$current_first) {
844 $current_first = date(
"Y-m-d", $id[1]);
852 $rece = $this->book_request->getRece();
853 $recm = $this->book_request->getRecm();
858 if ((
int) $recm > 0 && $end && $current_first) {
861 $cycle = (
int) $recm * 7;
864 while ($cut < 1000 && $this->
addDaysDate($current_first, $cycle) <= $end) {
866 $current_first = null;
867 foreach ($org as $item_id => $max) {
868 $parts = explode(
"_", $item_id);
874 $new_item_id = $obj_id .
"_" . $from .
"_" . $to;
877 if (!isset($counter[$new_item_id]) && date(
"Y-m-d", $to) <= $end) {
880 $new_max = (
int) $new_max[$obj_id];
882 $counter[$new_item_id] = $new_max;
884 if (!$current_first) {
885 $current_first = date(
"Y-m-d", $from);
889 $new_values[
"conf_nr__" . $new_item_id .
"_" . $new_max] =
890 $_POST[
"conf_nr__" . $item_id .
"_" . $max];
896 $group_id = $this->book_request->getGroupId();
899 if ($form->checkInput()) {
902 foreach ($counter as $id => $all_nr) {
903 $book_nr = $form->getInput(
"conf_nr__" . $id .
"_" . $all_nr);
904 $parts = explode(
"_", $id);
911 $counter = $counter[$obj_id];
914 $book_nr = min($book_nr, $counter);
915 for ($loop = 0; $loop < $book_nr; $loop++) {
916 $rsv_ids[] = $this->
processBooking($obj_id, $from, $to, $group_id);
925 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'book_reservation_failed'),
true);
931 $rece_array = explode(
".", $rece);
933 $rece_day = str_pad($rece_array[0], 2,
"0", STR_PAD_LEFT);
934 $rece_month = str_pad($rece_array[1], 2,
"0", STR_PAD_LEFT);
935 $rece_year = $rece_array[2];
940 $form->setValuesByPost();
942 $rece_date =
new ilDate($rece_year .
"-" . $rece_month .
"-" . $rece_day,
IL_CAL_DATE);
944 $rece = $form->getItemByPostVar(
"rece");
945 if ($rece !== null) {
946 $rece->setDate($rece_date);
948 $recm = $form->getItemByPostVar(
"recm");
949 if ($recm !== null) {
950 $recm->setHideSubForm((
int) $form->getInput(
"recm") < 1);
954 $hidden_date->setValue($rece_date);
955 $form->addItem($hidden_date);
965 $date = date_parse($a_date);
966 $stamp = mktime(0, 0, 1, $date[
"month"], $date[
"day"] + $a_days, $date[
"year"]);
967 return date(
"Y-m-d", $stamp);
974 $date = getdate($a_stamp);
980 $date[
"mday"] + $a_days,
991 array $a_rsv_ids = null
993 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'book_reservation_confirmed'),
true);
997 $pfile = $obj->getPostFile();
998 $ptext = $obj->getPostText();
1000 if (trim($ptext) || $pfile) {
1001 if (count($a_rsv_ids)) {
1002 $this->
ctrl->setParameter($this,
'rsv_ids', implode(
";", $a_rsv_ids));
1004 $this->
ctrl->redirect($this,
'displayPostInfo');
1025 foreach ($book_ids as $book_id) {
1026 if (in_array($book_id, $this->rsv_ids) || count($this->rsv_ids) === 0) {
1028 $from = $obj->getFrom();
1029 $to = $obj->getTo();
1030 if ($from > time()) {
1031 $key = $from .
"-" . $to;
1032 if (!isset($tmp[
$key])) {
1045 foreach ($tmp as $time => $counter) {
1046 $time = explode(
"-", $time);
1052 $time .=
" (" . $counter .
")";
1056 $book_id = array_shift($book_ids);
1071 $pfile = $obj->getPostFile();
1072 $ptext = $obj->getPostText();
1074 $mytpl =
new ilTemplate(
'tpl.booking_reservation_post.html',
true,
true,
'Modules/BookingManager/BookingProcess');
1075 $mytpl->setVariable(
"TITLE", $lng->
txt(
'book_post_booking_information'));
1079 $ptext = str_replace(
1080 [
"[OBJECT]",
"[PERIOD]"],
1081 [$obj->getTitle(), implode(
"<br />", $period)],
1085 $mytpl->setVariable(
"POST_TEXT", nl2br($ptext));
1089 $url = $ilCtrl->getLinkTarget($this,
'deliverPostFile');
1091 $mytpl->setVariable(
"DOWNLOAD", $lng->
txt(
'download'));
1092 $mytpl->setVariable(
"URL_FILE",
$url);
1093 $mytpl->setVariable(
"TXT_FILE", $pfile);
1096 $mytpl->setVariable(
"TXT_SUBMIT", $lng->
txt(
'ok'));
1097 $mytpl->setVariable(
"URL_SUBMIT", $ilCtrl->getLinkTarget($this,
"back"));
1113 $book_id = current($book_ids);
1120 $file = $obj->getPostFileFullPath();
displayPostInfo()
Display post booking informations.
processBooking(int $a_object_id, int $a_from=null, int $a_to=null, int $a_group_id=null)
Book object for date.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deliverPostFile()
Deliver post booking file.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
handleBookingSuccess(int $a_obj_id, array $a_rsv_ids=null)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
confirmBookingNumbers(array $a_objects_counter, int $a_group_id, ilPropertyFormGUI $a_form=null)
static _numericMonthToString(int $a_month, bool $a_long=true)
numeric month to string
static _lookupFullname(int $a_user_id)
getCmd(string $fallback_command=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getObjectReservationForUser(int $a_object_id, int $a_user_id)
book()
First step in booking process.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
saveParticipant()
save booking participant
static _buildWeekDayList(ilDate $a_day, int $a_weekstart)
build week day list public
static getAvailableObject(array $a_ids, int $a_from, int $a_to, bool $a_return_single=true, bool $a_return_counter=false)
Check if any of given objects are bookable.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getInstanceByUserId(int $a_user_id)
static useRelativeDates()
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
checkPermission(string $a_perm)
static getNrOfItemsForObjects(array $a_obj_ids)
Get nr of available items for a set of object ids.
saveMultipleBookings()
Save multiple users reservations for one booking pool object.
addDaysDate(string $a_date, int $a_days)
getNextClass($a_gui_class=null)
setContent(string $a_html)
Sets content for standard template.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilBookingHelpAdapter $help
static initDefaultCalendarByType(int $a_type_id, int $a_usr_id, string $a_title, bool $a_create=false)
Init the default calendar for given type and user.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addAssignment(int $a_cal_cat_id)
checkPermissionBool(string $a_perm)
static _numericDayToString(int $a_day, bool $a_long=true)
confirmedBookingNumbers()
ILIAS BookingManager StandardGUIRequest $book_request
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static numAvailableFromObjectNoSchedule(int $a_obj_id)
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false)
Format a period of two dates Shows: 14.
static isObjectAvailableNoSchedule(int $a_obj_id)
__construct(Container $dic, ilPlugin $plugin)
static calculateFontColor(string $a_html_color_code)
Calculate best font color from html hex color code.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
bookMultipleParticipants()
Create reservations for a bunch of booking pool participants.
static _getColorsByType(string $a_type)
get selectable colors
initBookingNumbersForm(array $a_objects_counter, int $a_group_id, bool $a_reload=false, ?array $new_values=null)
static parseIncomingDate($a_value, bool $a_add_time=false)
Try to parse incoming value to date object.
static setUseRelativeDates(bool $a_status)
set use relative dates
addDaysStamp(int $a_stamp, int $a_days)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...