62 $this->ctrl = $DIC->ctrl();
63 $this->tpl = $DIC[
"tpl"];
64 $this->lng = $DIC->language();
65 $this->access = $DIC->access();
66 $this->tabs_gui = $DIC->tabs();
67 $this->
user = $DIC->user();
77 $this->sseed = $sseed;
79 $this->rsv_ids = explode(
";", $_REQUEST[
"rsv_ids"]);
82 $this->user_id_assigner = $this->
user->getId();
84 $this->user_id_to_book = (int)
$_GET[
'bkusr'];
88 $this->ctrl->saveParameter($this, [
"bkusr"]);
98 $next_class = $ctrl->getNextClass($this);
99 $cmd = $ctrl->getCmd(
"show");
100 switch ($next_class) {
102 if (in_array($cmd, array(
"book",
"back",
103 "assignParticipants",
104 "bookMultipleParticipants",
105 "saveMultipleBookings",
107 "confirmBookingNumbers",
108 "confirmedBookingNumbers",
122 $this->ctrl->returnToParent($this);
130 $this->
help->setHelpId($a_id);
140 $ilAccess = $this->access;
142 if (!$ilAccess->checkAccess($a_perm,
"", $this->pool->getRefId())) {
173 $this->tabs_gui->clearTargets();
174 $this->tabs_gui->setBackTarget($this->lng->txt(
'book_back_to_list'), $this->ctrl->getLinkTarget($this,
'back'));
180 $this->lng->loadLanguageModule(
"dateplaner");
181 $this->ctrl->setParameter($this,
'object_id', $obj->getId());
183 if ($this->user_id_to_book != $this->user_id_assigner) {
184 $this->ctrl->setParameter($this,
'bkusr', $this->user_id_to_book);
190 $tpl->setContent($this->renderSlots($schedule, array($obj->getId()), $obj->getTitle()));
193 $cgui->setHeaderText($this->lng->txt(
"book_confirm_booking_no_schedule"));
195 $cgui->setFormAction($this->ctrl->getFormAction($this));
196 $cgui->setCancel($this->lng->txt(
"cancel"),
"back");
197 $cgui->setConfirm($this->lng->txt(
"confirm"),
"confirmedBooking");
199 $cgui->addItem(
"object_id", $obj->getId(), $obj->getTitle());
201 $tpl->setContent($cgui->getHTML());
211 protected function renderSlots(
ilBookingSchedule $schedule, array $object_ids,
string $title)
217 $mytpl =
new ilTemplate(
'tpl.booking_reservation_fix.html',
true,
true,
'Modules/BookingManager');
219 $mytpl->setVariable(
'FORM_ACTION', $this->ctrl->getFormAction($this));
220 $mytpl->setVariable(
'TXT_TITLE', $this->lng->txt(
'book_reservation_title'));
221 $mytpl->setVariable(
'TXT_INFO', $this->lng->txt(
'book_reservation_fix_info'));
222 $mytpl->setVariable(
'TXT_OBJECT', $title);
223 $mytpl->setVariable(
'TXT_CMD_BOOK', $this->lng->txt(
'book_confirm_booking'));
224 $mytpl->setVariable(
'TXT_CMD_CANCEL', $this->lng->txt(
'cancel'));
228 $morning_aggr = $user_settings->getDayStart();
229 $evening_aggr = $user_settings->getDayEnd();
231 for (
$i = $morning_aggr;
$i <= $evening_aggr;
$i++) {
232 switch ($user_settings->getTimeFormat()) {
234 if ($morning_aggr > 0 &&
$i == $morning_aggr) {
235 $hours[
$i] = sprintf(
'%02d:00', 0) .
"-";
237 $hours[
$i] .= sprintf(
'%02d:00',
$i);
238 if ($evening_aggr < 23 &&
$i == $evening_aggr) {
239 $hours[
$i] .=
"-" . sprintf(
'%02d:00', 23);
244 if ($morning_aggr > 0 &&
$i == $morning_aggr) {
245 $hours[
$i] = date(
'h a', mktime(0, 0, 0, 1, 1, 2000)) .
"-";
247 $hours[
$i] .= date(
'h a', mktime(
$i, 0, 0, 1, 1, 2000));
248 if ($evening_aggr < 23 &&
$i == $evening_aggr) {
249 $hours[
$i] .=
"-" . date(
'h a', mktime(23, 0, 0, 1, 1, 2000));
255 if ($this->seed !=
"") {
256 $find_first_open =
false;
259 $find_first_open =
true;
260 $seed = ($this->sseed !=
"")
265 $week_start = $user_settings->getWeekStart();
267 if (!$find_first_open) {
269 $this->buildDatesBySchedule($week_start, $hours, $schedule, $object_ids,
$seed, $dates);
274 $has_open_slot = $this->buildDatesBySchedule($week_start, $hours, $schedule, $object_ids,
$seed, $dates);
277 if (!$has_open_slot) {
279 $limit = clone(
$seed);
287 $has_open_slot = $this->buildDatesBySchedule($week_start, $hours, $schedule, $object_ids,
$seed, $dates);
293 $mytpl->setVariable(
'NAVIGATION', $navigation->getHTML());
299 $mytpl->setCurrentBlock(
'weekdays');
302 $mytpl->parseCurrentBlock();
307 for ($loop = 0; $loop < 7; $loop++) {
310 $color[$loop + 1] =
'border-bottom: 1px solid ' . $col .
'; background-color: ' . $col .
'; color: ' . $fnt;
314 foreach ($dates as $hour => $days) {
316 $caption = array_shift($caption);
318 for ($loop = 1; $loop < 8; $loop++) {
319 if (!isset($days[$loop])) {
320 $mytpl->setCurrentBlock(
'dates');
321 $mytpl->setVariable(
'DUMMY',
' ');
322 $mytpl->parseCurrentBlock();
324 if (isset($days[$loop][
'captions'])) {
325 foreach ($days[$loop][
'captions'] as $slot_id => $slot_caption) {
326 $mytpl->setCurrentBlock(
'choice');
327 $mytpl->setVariable(
'TXT_DATE', $slot_caption);
328 $mytpl->setVariable(
'VALUE_DATE', $slot_id);
329 $mytpl->setVariable(
'DATE_COLOR', $color[$loop]);
333 $this->lng->txt(
'book_reservation_available'),
334 $days[$loop][
'available'][$slot_id]
337 $mytpl->parseCurrentBlock();
340 $mytpl->setCurrentBlock(
'dates');
341 $mytpl->setVariable(
'DUMMY',
'');
342 $mytpl->parseCurrentBlock();
343 } elseif (isset($days[$loop][
'in_slot'])) {
344 $mytpl->setCurrentBlock(
'dates');
345 $mytpl->setVariable(
'DATE_COLOR', $color[$loop]);
346 $mytpl->parseCurrentBlock();
348 $mytpl->setCurrentBlock(
'dates');
349 $mytpl->setVariable(
'DUMMY',
' ');
350 $mytpl->parseCurrentBlock();
355 $mytpl->setCurrentBlock(
'slots');
356 $mytpl->setVariable(
'TXT_HOUR', $caption);
358 $mytpl->setVariable(
'CSS_ROW',
'tblrow1');
360 $mytpl->setVariable(
'CSS_ROW',
'tblrow2');
362 $mytpl->parseCurrentBlock();
368 return $mytpl->get();
380 protected function buildDatesBySchedule($week_start, array $hours,
ilBookingSchedule $schedule, array $object_ids,
$seed, array &$dates)
386 $map = array(
'mo',
'tu',
'we',
'th',
'fr',
'sa',
'su');
396 $has_open_slot =
false;
402 if ($av_from || $av_to) {
405 if ($av_from && $av_from > $today) {
409 if ($av_to && $av_to < $today) {
415 if (isset($definition[$map[$date_info[
'isoday'] - 1]])) {
417 foreach ($definition[$map[$date_info[
'isoday'] - 1]] as $slot) {
418 $slot = explode(
'-', $slot);
419 $slots[] = array(
'from' => str_replace(
':',
'', $slot[0]),
420 'to' => str_replace(
':',
'', $slot[1]));
424 $last = array_pop(array_keys($hours));
425 $slot_captions = array();
426 foreach ($hours as $hour => $period) {
427 $dates[$hour][0] = $period;
429 $period = explode(
"-", $period);
433 $period[0] = date(
"H", strtotime($period[0]));
434 if (
sizeof($period) == 2) {
435 $period[1] = date(
"H", strtotime($period[1]));
439 if (
sizeof($period) == 1) {
440 $period_from = (int) substr($period[0], 0, 2) .
"00";
441 $period_to = (int) substr($period[0], 0, 2) .
"59";
443 $period_from = (int) substr($period[0], 0, 2) .
"00";
444 $period_to = (int) substr($period[1], 0, 2) .
"59";
447 $column = $date_info[
'isoday'];
456 if (
sizeof($slots)) {
458 foreach ($slots as $slot) {
459 $slot_from = mktime(substr($slot[
'from'], 0, 2), substr($slot[
'from'], 2, 2), 0, $date_info[
"mon"], $date_info[
"mday"], $date_info[
"year"]);
460 $slot_to = mktime(substr($slot[
'to'], 0, 2), substr($slot[
'to'], 2, 2), 0, $date_info[
"mon"], $date_info[
"mday"], $date_info[
"year"]);
466 if (!array_sum($nr_available)) {
473 if ($slot_from < (time() + $schedule->
getDeadline() * 60 * 60)) {
478 if ($slot_to < time()) {
484 if ((
int) $slot[
'from'] < $period_to && (int) $slot[
'to'] > $period_from) {
486 $from = array_pop(explode(
' ', $from));
488 $to = array_pop(explode(
' ', $to));
491 $id = $slot_from .
'_' . $slot_to;
492 if (!in_array($id, $slot_captions)) {
493 $dates[$hour][$column][
'captions'][$id] = $from .
'-' . $to;
494 $dates[$hour][$column][
'available'][$id] = array_sum($nr_available);
495 $slot_captions[] = $id;
503 $has_open_slot =
true;
504 $dates[$hour][$column][
'in_slot'] =
$in;
510 return $has_open_slot;
522 $this->tabs_gui->clearTargets();
523 $this->tabs_gui->setBackTarget($this->lng->txt(
'book_back_to_list'), $this->ctrl->getLinkTarget($this,
'back'));
527 $this->tpl->setContent($table->getHTML());
536 $participants =
$_POST[
"mass"];
541 $this->tabs_gui->clearTargets();
542 $this->tabs_gui->setBackTarget($this->lng->txt(
"back"), $this->ctrl->getLinkTarget($this,
'assignparticipants'));
545 $conf->setFormAction($this->ctrl->getFormAction($this));
548 foreach ($participants as $id) {
550 $conf->addItem(
"participants[]", $id,
$name);
554 if (
sizeof($participants) > $available) {
556 $conf->setHeaderText(
558 $this->lng->txt(
'book_limit_objects_available'),
559 sizeof($participants),
565 $conf->setHeaderText($this->lng->txt(
'book_confirm_booking_no_schedule'));
566 $conf->addHiddenItem(
"object_id", $this->book_obj_id);
567 $conf->setConfirm($this->lng->txt(
"assign"),
"saveMultipleBookings");
570 $conf->setCancel($this->lng->txt(
"cancel"),
'redirectToList');
571 $this->tpl->setContent($conf->getHTML());
576 $this->ctrl->redirect($this,
'assignParticipants');
586 $participants =
$_POST[
"participants"];
587 $this->book_obj_id =
$_POST[
'object_id'];
592 foreach ($participants as $id) {
593 $this->user_id_to_book = $id;
597 if (
sizeof($rsv_ids)) {
598 ilUtil::sendSuccess(
"booking_multiple_succesfully");
621 if ($this->book_obj_id > 0) {
622 $object_id = $this->book_obj_id;
631 $this->ctrl->redirect($this,
'back');
636 if (!isset(
$_POST[
'date'])) {
643 if ($this->book_obj_id > 0) {
646 $object_id = $this->book_obj_id;
652 $repo =
$f->getRepo();
653 $group_id = $repo->getNewGroupId();
654 foreach (
$_POST[
'date'] as $date) {
655 $fromto = explode(
'_', $date);
659 $counter = $counter[$object_id];
662 $confirm[$object_id .
"_" . $fromto[0] .
"_" . ($fromto[1] + 1)] = $counter;
667 if (
sizeof($confirm)) {
679 $this->ctrl->redirect($this,
'book');
701 public function processBooking($a_object_id, $a_from = null, $a_to = null, $a_group_id = null)
707 $reservation->setObjectId($a_object_id);
708 $reservation->setUserId($this->user_id_to_book);
709 $reservation->setAssignerId($this->user_id_assigner);
710 $reservation->setFrom($a_from);
711 $reservation->setTo($a_to);
712 $reservation->setGroupId($a_group_id);
713 $reservation->setContextObjId($this->context_obj_id);
714 $reservation->save();
717 $this->lng->loadLanguageModule(
'dateplaner');
725 $entry->setTitle($this->lng->txt(
'book_cal_entry') .
' ' . $object->getTitle());
726 $entry->setContextId($reservation->getId());
733 return $reservation->getId();
744 $this->tabs_gui->clearTargets();
745 $this->tabs_gui->setBackTarget($this->lng->txt(
'book_back_to_list'), $this->ctrl->getLinkTarget($this,
'back'));
751 $tpl->setContent($a_form->getHTML());
758 $form->setFormAction($this->ctrl->getFormAction($this,
"confirmedBooking"));
759 $form->setTitle($this->lng->txt(
"book_confirm_booking_schedule_number_of_objects"));
760 $form->setDescription($this->lng->txt(
"book_confirm_booking_schedule_number_of_objects_info"));
764 foreach ($a_objects_counter as $id => $counter) {
765 $id = explode(
"_", $id);
766 $book_id = $id[0] .
"_" . $id[1] .
"_" . $id[2] .
"_" . $counter;
772 $section->setTitle($obj->getTitle());
785 $nr_field->setValue(1);
786 $nr_field->setSize(3);
787 $nr_field->setMaxValue($counter);
788 $nr_field->setMinValue($counter ? 1 : 0);
789 $nr_field->setRequired(
true);
790 $form->addItem($nr_field);
792 if (!$min_date || $id[1] < $min_date) {
798 $this->lng->loadLanguageModule(
"dateplaner");
799 $rec_mode =
new ilSelectInputGUI($this->lng->txt(
"cal_recurrences"),
"recm");
800 $rec_mode->setRequired(
true);
801 $rec_mode->setOptions(array(
802 "-1" => $this->lng->txt(
"cal_no_recurrence"),
803 1 => $this->lng->txt(
"cal_weekly"),
804 2 => $this->lng->txt(
"r_14"),
805 4 => $this->lng->txt(
"r_4_weeks")
807 $form->addItem($rec_mode);
811 $rec_mode->addSubItem($rec_end);
815 $rec_mode->setHideSubForm(
true,
'>= 1');
822 $rec_mode->setDisabled(
true);
823 $rec_end->setDisabled(
true);
828 $grp->setValue($a_group_id);
829 $form->addItem($grp);
832 if ($this->user_id_assigner != $this->user_id_to_book) {
834 $usr->setValue($this->user_id_to_book);
835 $form->addItem($usr);
838 $form->addCommandButton(
"confirmedBookingNumbers", $this->lng->txt(
"confirm"));
839 $form->addCommandButton(
"back", $this->lng->txt(
"cancel"));
849 $this->user_id_to_book = (int)
$_POST[
'bkusr'];
854 $current_first = $obj_id = null;
855 foreach (array_keys(
$_POST) as $id) {
856 if (substr($id, 0, 9) ==
"conf_nr__") {
857 $id = explode(
"_", substr($id, 9));
858 $counter[$id[0] .
"_" . $id[1] .
"_" . $id[2]] = (int) $id[3];
859 if (!$current_first) {
860 $current_first = date(
"Y-m-d", $id[1]);
870 if ((
int)
$_POST[
"recm"] > 0 && $end && $current_first) {
873 $cycle = (int)
$_POST[
"recm"] * 7;
876 while ($cut < 1000 && $this->
addDaysDate($current_first, $cycle) <= $end) {
878 $current_first = null;
879 foreach ($org as $item_id => $max) {
880 $parts = explode(
"_", $item_id);
886 $new_item_id = $obj_id .
"_" . $from .
"_" . $to;
889 if (!isset($counter[$new_item_id]) && date(
"Y-m-d", $to) <= $end) {
892 $new_max = (int) $new_max[$obj_id];
894 $counter[$new_item_id] = $new_max;
896 if (!$current_first) {
897 $current_first = date(
"Y-m-d", $from);
901 $_POST[
"conf_nr__" . $new_item_id .
"_" . $new_max] =
$_POST[
"conf_nr__" . $item_id .
"_" . $max];
907 $group_id =
$_POST[
"grp_id"];
910 if ($form->checkInput()) {
913 foreach ($counter as $id => $all_nr) {
914 $book_nr = $form->getInput(
"conf_nr__" . $id .
"_" . $all_nr);
915 $parts = explode(
"_", $id);
922 $counter = $counter[$obj_id];
925 $book_nr = min($book_nr, $counter);
926 for ($loop = 0; $loop < $book_nr; $loop++) {
927 $rsv_ids[] = $this->
processBooking($obj_id, $from, $to, $group_id);
942 $rece_array = explode(
".",
$_POST[
'rece']);
944 $rece_day = str_pad($rece_array[0], 2,
"0", STR_PAD_LEFT);
945 $rece_month = str_pad($rece_array[1], 2,
"0", STR_PAD_LEFT);
946 $rece_year = $rece_array[2];
951 $form->setValuesByPost();
953 $rece_date =
new ilDate($rece_year .
"-" . $rece_month .
"-" . $rece_day,
IL_CAL_DATE);
955 $form->getItemByPostVar(
"rece")->setDate($rece_date);
956 $form->getItemByPostVar(
"recm")->setHideSubForm(
$_POST[
"recm"] < 1);
959 $hidden_date->setValue($rece_date);
960 $form->addItem($hidden_date);
968 $date = date_parse($a_date);
969 $stamp = mktime(0, 0, 1, $date[
"month"], $date[
"day"] + $a_days, $date[
"year"]);
970 return date(
"Y-m-d", $stamp);
975 $date = getDate($a_stamp);
981 $date[
"mday"] + $a_days,
992 ilUtil::sendSuccess($this->lng->txt(
'book_reservation_confirmed'),
true);
996 $pfile = $obj->getPostFile();
997 $ptext = $obj->getPostText();
999 if (trim($ptext) || $pfile) {
1000 if (
sizeof($a_rsv_ids)) {
1001 $this->ctrl->setParameter($this,
'rsv_ids', implode(
";", $a_rsv_ids));
1003 $this->ctrl->redirect($this,
'displayPostInfo');
1016 $ilCtrl = $this->ctrl;
1017 $id = $this->book_obj_id;
1026 foreach ($book_ids as $book_id) {
1027 if (in_array($book_id, $this->rsv_ids)) {
1029 $from = $obj->getFrom();
1030 $to = $obj->getTo();
1031 if ($from > time()) {
1032 $tmp[$from .
"-" . $to]++;
1042 foreach ($tmp as $time => $counter) {
1043 $time = explode(
"-", $time);
1049 $time .=
" (" . $counter .
")";
1053 $book_id = array_shift($book_ids);
1068 $pfile = $obj->getPostFile();
1069 $ptext = $obj->getPostText();
1071 $mytpl =
new ilTemplate(
'tpl.booking_reservation_post.html',
true,
true,
'Modules/BookingManager/BookingProcess');
1072 $mytpl->setVariable(
"TITLE",
$lng->txt(
'book_post_booking_information'));
1076 $ptext = str_replace(
"[OBJECT]", $obj->getTitle(), $ptext);
1077 $ptext = str_replace(
"[PERIOD]", implode(
"<br />", $period), $ptext);
1079 $mytpl->setVariable(
"POST_TEXT", nl2br($ptext));
1083 $url = $ilCtrl->getLinkTarget($this,
'deliverPostFile');
1085 $mytpl->setVariable(
"DOWNLOAD",
$lng->txt(
'download'));
1086 $mytpl->setVariable(
"URL_FILE",
$url);
1087 $mytpl->setVariable(
"TXT_FILE", $pfile);
1090 $mytpl->setVariable(
"TXT_SUBMIT",
$lng->txt(
'ok'));
1091 $mytpl->setVariable(
"URL_SUBMIT", $ilCtrl->getLinkTarget($this,
"back"));
1093 $tpl->setContent($mytpl->get());
1101 $id = $this->book_obj_id;
1113 $file = $obj->getPostFileFullPath();
displayPostInfo()
Display post booking informatins.
__construct(ilObjBookingPool $pool, int $booking_object_id, ilBookingHelpAdapter $help, string $seed="", string $sseed="", int $context_obj_id=0)
Constructor.
Model for a calendar entry.
addDaysStamp($a_stamp, $a_days)
Class ilBookingParticipant.
static _getColorsByType($a_type)
get selectable colors
deliverPostFile()
Deliver post booking file.
static _numericDayToString($a_day, $a_long=true)
get
static isObjectAvailableNoSchedule($a_obj_id)
addDaysDate($a_date, $a_days)
static _lookupFullname($a_user_id)
Lookup Full Name.
Help adapter for booking manager.
getAvailabilityFrom()
Get availability start.
static _getInstanceByUserId($a_user_id)
get singleton instance
book()
First step in booking process.
schedule for booking ressource
getRaster()
Get booking raster.
saveParticipant()
save booking participant.
getAvailabilityTo()
Get availability end.
static setUseRelativeDates($a_status)
set use relative dates
static _buildWeekDayList($a_day, $a_weekstart)
build week day list
getDeadline()
Get deadline.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static _numericMonthToString($a_month, $a_long=true)
numeric month to string
static useRelativeDates()
check if relative dates are used
static getNrOfItemsForObjects(array $a_obj_ids)
Get nr of available items.
handleBookingSuccess($a_obj_id, array $a_rsv_ids=null)
saveMultipleBookings()
Save multiple users reservations for one booking pool object.
static getObjectReservationForUser($a_object_id, $a_user_id, $a_multi=false)
List participant / booking pool assignment.
Booking process ui class.
initBookingNumbersForm(array $a_objects_counter, $a_group_id, $a_reload=false)
getDefinition()
Get definition.
static calculateFontColor($a_html_color_code)
Calculate best font color from html hex color code.
confirmedBookingNumbers()
confirmBookingNumbers(array $a_objects_counter, $a_group_id, ilPropertyFormGUI $a_form=null)
static getAvailableObject(array $a_ids, $a_from, $a_to, $a_return_single=true, $a_return_counter=false)
Check if any of given objects are bookable.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
addAssignment($a_cal_cat_id)
add assignment
if(php_sapi_name() !='cli') $in
Factory for reservation repo.
executeCommand()
Execute command.
checkPermissionBool($a_perm)
Check permission.
static formatPeriod(ilDateTime $start, ilDateTime $end, $a_skip_starting_day=false)
Format a period of two date Shows: 14.
static initDefaultCalendarByType($a_type_id, $a_usr_id, $a_title, $a_create=false)
Init the default calendar for given type and user.
static numAvailableFromObjectNoSchedule($a_obj_id)
bookMultipleParticipants()
Create reservations for a bunch of booking pool participants.
confirmedBooking()
Book object - either of type or specific - for given dates.
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
checkPermission($a_perm)
Check permission.
processBooking($a_object_id, $a_from=null, $a_to=null, $a_group_id=null)
Book object for date.
static parseIncomingDate($a_value, $a_add_time=null)
Try to parse incoming value to date object.
static deliverFile( $a_file, $a_filename, $a_mime='', $isInline=false, $removeAfterDelivery=false, $a_exit_after=true)
deliver file for download via browser.
Confirmation screen class.