25 protected \ILIAS\BookingManager\Access\AccessManager
$access;
26 protected \ILIAS\BookingManager\Reservations\ReservationManager
$reservation;
27 protected \ILIAS\BookingManager\BookingProcess\ProcessUtilGUI
$util_gui;
28 protected \ILIAS\BookingManager\InternalRepoService
$repo;
29 protected \ILIAS\BookingManager\BookingProcess\BookingProcessManager
$process;
30 protected \ILIAS\HTTP\Services
$http;
31 protected \ILIAS\BookingManager\InternalGUIService
$gui;
50 int $booking_object_id,
51 int $context_obj_id = 0
55 $this->
ctrl = $DIC->ctrl();
56 $this->tpl = $DIC[
"tpl"];
57 $this->
lng = $DIC->language();
58 $this->tabs_gui = $DIC->tabs();
59 $this->
user = $DIC->user();
60 $this->
help = $DIC->bookingManager()->internal()
61 ->gui()->bookingHelp($pool);
62 $this->
http = $DIC->http();
70 $this->book_request = $DIC->bookingManager()
75 $this->gui = $DIC->bookingManager()
79 $this->repo = $DIC->bookingManager()
83 $this->rsv_ids = $this->book_request->getReservationIdsFromString();
85 $this->raw_post_data = $DIC->http()->request()->getParsedBody();
87 $this->user_id_assigner = $this->
user->getId();
88 if ($this->book_request->getBookedUser() > 0) {
89 $this->user_id_to_book = $this->book_request->getBookedUser();
93 $this->
ctrl->saveParameter($this, [
"bkusr",
"returnCmd"]);
95 $this->process = $DIC->bookingManager()->internal()->domain()->process();
96 $this->reservation = $DIC->bookingManager()->internal()->domain()->reservations();
97 $this->util_gui = $DIC->bookingManager()->internal()->gui()->process()->ProcessUtilGUI(
101 $this->
access = $DIC->bookingManager()->internal()->domain()->access();
109 $cmd = $ctrl->
getCmd(
"show");
110 switch ($next_class) {
112 if (in_array($cmd, array(
115 "assignParticipants",
116 "bookMultipleParticipants",
117 "saveMultipleBookings",
121 "redirectToParticipantsList",
131 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_permission"),
true);
148 $this->tabs_gui->clearTargets();
149 $this->tabs_gui->setBackTarget($this->
lng->txt(
'book_back_to_list'), $this->
ctrl->getLinkTarget($this,
'back'));
151 $this->util_gui->setHelpId(
"book");
155 $this->
lng->loadLanguageModule(
"dateplaner");
156 $this->
ctrl->setParameter($this,
'object_id', $obj->getId());
157 $this->
ctrl->setParameter($this,
'returnCmd',
"back");
159 if ($this->user_id_to_book !== $this->user_id_assigner) {
160 $this->
ctrl->setParameter($this,
'bkusr', $this->user_id_to_book);
167 if ($this->pool->usesMessages()) {
177 return $this->gui->form([self::class],
"saveMessage", $this->
lng->txt(
"book_book"))
178 ->section(
"main", $this->
lng->txt(
"book_booking") .
": " . $obj->getTitle())
181 $this->
lng->txt(
"book_message"),
182 $this->
lng->txt(
"book_message_info")
193 $this->
ctrl->saveParameter($this, [
'object_id',
'returnCmd',
'bkusr']);
195 if (!$form->isValid()) {
196 $this->tabs_gui->clearTargets();
197 $this->tabs_gui->setBackTarget($this->
lng->txt(
'book_back_to_list'), $this->
ctrl->getLinkTarget($this,
'back'));
198 $this->tpl->setContent($form->render());
211 $cgui->setHeaderText($this->
lng->txt(
"book_confirm_booking_no_schedule"));
213 $cgui->setFormAction($this->
ctrl->getFormAction($this));
214 $cgui->setCancel($this->
lng->txt(
"cancel"),
"back");
215 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"confirmedBooking");
217 $cgui->addItem(
"object_id", $obj->getId(), $obj->getTitle());
225 $this->util_gui->assignParticipants($this->book_obj_id);
233 $participants = $this->book_request->getParticipants();
234 if (count($participants) === 0) {
235 $this->util_gui->back();
239 $this->tabs_gui->clearTargets();
240 $this->tabs_gui->setBackTarget($this->
lng->txt(
"back"), $this->
ctrl->getLinkTarget($this,
'assignparticipants'));
243 $conf->setFormAction($this->
ctrl->getFormAction($this));
246 foreach ($participants as
$id) {
247 if (!$this->
access->canManageReservationForUser($this->pool->getRefId(),
$id)) {
252 $conf->addItem(
"participants[]", $id, $name);
256 if (count($participants) > $available) {
258 $this->tpl->setOnScreenMessage(
"failure", sprintf(
259 $this->
lng->txt(
'book_limit_objects_available'),
260 count($participants),
264 $this->
ctrl->redirect($this,
"redirectToParticipantsList");
266 $conf->setHeaderText($this->
lng->txt(
'book_confirm_booking_no_schedule'));
267 $conf->addHiddenItem(
"object_id", $this->book_obj_id);
268 $conf->setConfirm($this->
lng->txt(
"assign"),
"saveMultipleBookings");
271 $conf->setCancel($this->
lng->txt(
"cancel"),
'redirectToParticipantsList');
272 $this->tpl->setContent($conf->getHTML());
277 $this->
ctrl->redirect($this,
'assignParticipants');
286 $participants = $this->book_request->getParticipants();
287 $object_id = $this->book_request->getObjectId();
288 if (count($participants) > 0 && $object_id > 0) {
289 $this->book_obj_id = $object_id;
291 $this->util_gui->back();
294 foreach ($participants as
$id) {
295 if (!$this->
access->canManageReservationForUser($this->pool->getRefId(),
$id)) {
299 $this->user_id_to_book =
$id;
300 $rsv_ids[] = $this->process->bookSingle(
302 $this->user_id_to_book,
303 $this->user_id_assigner,
304 $this->context_obj_id
308 if (count($rsv_ids)) {
309 $this->tpl->setOnScreenMessage(
'success',
"booking_multiple_succesfully");
311 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'book_reservation_failed_overbooked'),
true);
313 $this->util_gui->back();
327 if ($this->book_obj_id > 0) {
332 $rsv_ids[] = $this->process->bookSingle(
334 $this->user_id_to_book,
335 $this->user_id_assigner,
336 $this->context_obj_id,
342 $success = $object_id;
345 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'book_reservation_failed_overbooked'),
true);
346 $this->
ctrl->redirect($this,
'back');
352 $this->util_gui->handleBookingSuccess($success,
"displayPostInfo", $rsv_ids);
354 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'book_reservation_failed'),
true);
355 $this->
ctrl->redirect($this,
'book');
362 $this->util_gui->displayPostInfo(
364 $this->user_id_assigner,
371 $this->util_gui->deliverPostFile(
373 $this->user_id_assigner
379 $this->
ctrl->redirectByClass(\ilObjBookingPoolGUI::class,
'render');
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
bookMultipleParticipants()
Create reservations for a bunch of booking pool participants.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS HTTP Services $http
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
book()
Triggered from object list week view for booking a single object / confirmation for.
static _lookupFullname(int $a_user_id)
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface Observer Contains several chained tasks and infos about them.
static getObjectReservationForUser(int $a_object_id, int $a_user_id)
getCmd(?string $fallback_command=null)
redirectToParticipantsList()
ILIAS BookingManager BookingProcess BookingProcessManager $process
setContent(string $a_html)
Sets content for standard template.
saveMultipleBookings()
Save multiple users reservations for one booking pool object.
confirmedBooking($message="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS BookingManager Reservations ReservationManager $reservation
ILIAS BookingManager InternalGUIService $gui
ILIAS BookingManager InternalRepoService $repo
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getNextClass($a_gui_class=null)
static http()
Fetches the global http state from ILIAS.
ilBookingHelpAdapter $help
ILIAS BookingManager Access AccessManager $access
__construct(ilObjBookingPool $pool, int $booking_object_id, int $context_obj_id=0)
static numAvailableFromObjectNoSchedule(int $a_obj_id)
static isObjectAvailableNoSchedule(int $a_obj_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
ILIAS BookingManager StandardGUIRequest $book_request
ILIAS BookingManager BookingProcess ProcessUtilGUI $util_gui