54 bool $a_call_by_reference,
55 bool $a_prepare_output =
true 58 $this->service = $DIC->bookingManager()->internal();
60 $this->domain = $domain = $this->service->domain();
61 $this->gui = $gui = $this->service->gui();
63 $this->tpl = $gui->mainTemplate();
64 $this->
tabs = $gui->tabs();
65 $this->nav_history = $gui->navigationHistory();
66 $this->
ctrl = $gui->ctrl();
67 $this->
lng = $domain->lng();
73 $this->
lng->loadLanguageModule(
"book");
76 if (is_object($this->
object)) {
80 $DIC[
"ilHelp"]->setScreenIdComponent(
"book");
83 $this->book_obj_id = $this->book_request->getObjectId();
84 $this->seed = $this->book_request->getSeed();
85 $this->sseed = $this->book_request->getSSeed();
86 $this->reservation_id = $this->book_request->getReservationId();
87 $this->profile_user_id = $this->book_request->getUserId();
89 $this->user_id_assigner = $this->
user->getId();
90 if ($this->book_request->getBookedUser() > 0) {
91 $this->user_id_to_book = $this->book_request->getBookedUser();
96 if ($this->book_request->getObjectId() > 0 &&
98 throw new ilException(
"Booking Object ID does not match Booking Pool.");
100 $this->cron_manager = $DIC->cron()->manager();
115 $next_class = $this->
ctrl->getNextClass($this);
116 $cmd = $this->
ctrl->getCmd();
118 if (!$next_class && $cmd ===
'render') {
122 $this->
ctrl->redirectByClass(ilBookingPreferencesGUI::class);
124 $this->
ctrl->redirectByClass(ilBookingObjectGUI::class);
126 $next_class = $this->
ctrl->getNextClass($this);
128 $this->
ctrl->redirect($this,
"infoscreen");
132 $ilNavigationHistory->addItem(
134 "./goto.php?target=book_" . $this->ref_id,
140 switch ($next_class) {
141 case 'ilpermissiongui':
143 $this->tabs_gui->setTabActive(
'perm_settings');
145 $this->
ctrl->forwardCommand($perm_gui);
148 case 'ilbookingobjectgui':
150 $this->
ctrl->redirect($this,
"infoScreen");
153 $this->tabs_gui->setTabActive(
'render');
160 $this->
ctrl->forwardCommand($object_gui);
163 case 'ilbookingschedulegui':
165 $this->tabs_gui->setTabActive(
'schedules');
167 $this->
ctrl->forwardCommand($schedule_gui);
170 case 'ilpublicuserprofilegui':
172 $ilTabs->clearTargets();
174 $profile->setBackUrl($this->
ctrl->getLinkTargetByClass(
"ilbookingreservationsgui",
''));
175 $ret = $this->
ctrl->forwardCommand($profile);
179 case 'ilinfoscreengui':
184 case "ilcommonactiondispatchergui":
188 $this->
ctrl->forwardCommand($gui);
192 case "ilobjectcopygui":
195 $cp->setType(
"book");
196 $this->
ctrl->forwardCommand($cp);
199 case 'ilobjectmetadatagui':
201 $this->tabs_gui->setTabActive(
'meta_data');
203 $this->
ctrl->forwardCommand($md_gui);
206 case 'ilbookingparticipantgui':
208 $this->tabs_gui->setTabActive(
'participants');
210 $this->
ctrl->forwardCommand($object_gui);
214 case "ilbookingreservationsgui":
215 $this->tabs_gui->setTabActive(
'log');
219 $this->
ctrl->forwardCommand($res_gui);
222 case 'ilbookingpreferencesgui':
223 $this->tabs_gui->setTabActive(
'preferences');
226 $gui = $this->service->gui()->
preferences()->BookingPreferencesGUI($pool);
227 $this->
ctrl->forwardCommand($gui);
230 case strtolower(SettingsGUI::class):
233 $ilTabs->activateTab(
"settings");
234 $gui = $this->gui->
settings()->settingsGUI(
240 $this->
ctrl->forwardCommand($gui);
244 if (!in_array($cmd, [
"create",
"save",
"infoScreen"])) {
247 $cmd = $this->
ctrl->getCmd();
261 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"book_pool_added"),
true);
262 $this->
ctrl->setParameter($this,
"ref_id", $new_object->
getRefId());
263 $this->
ctrl->redirect($this,
"edit");
274 if ($new_tpl_id !== $current_tpl_id) {
276 $this->
ctrl->redirect(ilDidacticTemplateGUI::class,
"confirmTemplateSwitch");
279 parent::afterUpdate();
284 $this->
ctrl->redirectByClass(SettingsGUI::class,
"");
289 $schedule_manager = $this->domain->schedules($this->
object->getId());
293 !$schedule_manager->hasSchedules()) {
294 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"book_schedule_warning_edit"));
307 $type->setRequired(
true);
312 $type->setDisabled(
true);
316 $fixed->
setInfo($this->
lng->txt(
"book_schedule_type_fixed_info"));
317 $type->addOption($fixed);
321 $period =
new ilNumberInputGUI($this->
lng->txt(
"book_reservation_filter_period"),
"period");
322 $period->
setInfo($this->
lng->txt(
"book_reservation_filter_period_info"));
323 $period->setSuffix($this->
lng->txt(
"days"));
325 $period->setMinValue(0);
326 $fixed->addSubItem($period);
330 $rmd->setChecked((
bool) $this->
object->getReminderStatus());
331 $info = $this->
lng->txt(
"book_reminder_day_info");
332 if (!$this->cron_manager->isJobActive(
'book_notification')) {
333 $info .=
" " . $this->
lng->txt(
"book_notification_cron_not_active");
335 $rmd->setInfo($info);
336 $fixed->addSubItem($rmd);
340 $rmd_day->setSize(3);
341 $rmd_day->setSuffix($this->
lng->txt(
"book_reminder_days"));
342 $rmd_day->setValue(max($this->
object->getReminderDay(), 1));
343 $rmd_day->setMinValue(1);
344 $rmd->addSubItem($rmd_day);
348 $none->
setInfo($this->
lng->txt(
"book_schedule_type_none_direct_info"));
349 $type->addOption($none);
353 $limit->setMinValue(1);
354 $limit->setSuffix($this->
lng->txt(
"book_bookings_per_user"));
355 $none->addSubItem($limit);
359 $pref->
setInfo($this->
lng->txt(
"book_schedule_type_none_preference_info"));
360 $type->addOption($pref);
363 $pref_nr =
new ilNumberInputGUI($this->
lng->txt(
"book_nr_of_preferences"),
"preference_nr");
365 $pref_nr->setMinValue(1);
366 $pref_nr->setInfo($this->
lng->txt(
"book_nr_of_preferences_info"));
367 $pref_nr->setSuffix($this->
lng->txt(
"book_nr_preferences"));
368 $pref_nr->setRequired(
true);
369 $pref->addSubItem($pref_nr);
373 $pref_deadline->
setInfo($this->
lng->txt(
"book_pref_deadline_info"));
374 $pref_deadline->setShowTime(
true);
375 $pref_deadline->setRequired(
true);
376 $pref->addSubItem($pref_deadline);
380 $public->setInfo($this->
lng->txt(
"book_public_log_info"));
385 $mess->setInfo($this->
lng->txt(
"book_messages_info"));
388 $this->
lng->loadLanguageModule(
"rep");
390 $section->setTitle($this->
lng->txt(
'rep_activation_availability'));
398 $pres->setTitle($this->
lng->txt(
'obj_presentation'));
402 $obj_service->commonSettings()->legacyForm($form, $this->
object)->addTileImage();
406 $feat->setTitle($this->
lng->txt(
'obj_features'));
424 protected function setTabs():
void 431 if (!$this->
ctrl->getNextClass() && in_array($this->
ctrl->getCmd(), array(
"create",
"save"))) {
438 $this->tabs_gui->addTab(
440 $this->
lng->txt(
"book_pref_overview"),
441 $this->
ctrl->getLinkTargetByClass(
"ilbookingpreferencesgui",
"")
447 $this->tabs_gui->addTab(
449 $this->
lng->txt(
"book_booking_objects"),
450 $this->
ctrl->getLinkTarget($this,
"render")
456 $this->tabs_gui->addTab(
458 $this->
lng->txt(
"book_log"),
459 $this->
ctrl->getLinkTargetByClass(
"ilbookingreservationsgui",
"")
463 $this->tabs_gui->addTab(
465 $this->
lng->txt(
"info_short"),
466 $this->
ctrl->getLinkTarget($this,
"infoscreen")
478 $this->tabs_gui->addTab(
480 $this->
lng->txt(
"settings"),
481 $this->
ctrl->getLinkTargetByClass(SettingsGUI::class,
"")
485 $this->tabs_gui->addTab(
487 $this->
lng->txt(
"book_schedules"),
488 $this->
ctrl->getLinkTargetByClass(
"ilbookingschedulegui",
"render")
492 $this->tabs_gui->addTab(
494 $this->
lng->txt(
"participants"),
495 $this->
ctrl->getLinkTargetByClass(
"ilbookingparticipantgui",
"render")
500 $mdtab = $mdgui->getTab();
502 $this->tabs_gui->addTarget(
506 "ilobjectmetadatagui" 513 $this->tabs_gui->addTab(
515 $this->
lng->txt(
"perm_settings"),
516 $this->
ctrl->getLinkTargetByClass(
"ilpermissiongui",
"perm")
521 public static function _goto(
string $a_target): void
524 $main_tpl = $DIC->ui()->mainTemplate();
526 $ilAccess = $DIC->access();
527 $lng = $DIC->language();
529 if ($ilAccess->checkAccess(
"read",
"", $a_target)) {
531 } elseif ($ilAccess->checkAccess(
"visible",
"", $a_target)) {
534 $main_tpl->setOnScreenMessage(
'failure', sprintf(
535 $lng->
txt(
"msg_no_perm_read_item"),
547 $this->
ctrl->redirectByClass(ilInfoScreenGUI::class,
"showSummary");
554 $this->tabs_gui->setTabActive(
'info');
560 $info->enablePrivateNotes();
567 $info->enableNewsEditing(
false);
570 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
572 if ($enable_internal_rss) {
573 $info->setBlockProperty(
"news",
"settings",
true);
574 $info->setBlockProperty(
"news",
"public_notifications_option",
true);
579 if ($ilCtrl->getNextClass() ===
"ilinfoscreengui") {
580 $ilCtrl->forwardCommand($info);
582 return $ilCtrl->getHTML($info);
593 $this->tabs_gui->clearTargets();
598 $profile->setBackUrl($this->
ctrl->getLinkTarget($this,
'log'));
606 if (is_object($this->
object)) {
607 $ilLocator->addItem($this->
object->getTitle(), $this->
ctrl->getLinkTarget($this,
"render"),
"", $this->
object->getRefId());
620 $lg = parent::initHeaderAction($sub_type, $sub_id);
624 $this->
object->getReminderStatus()) {
629 $this->
object->getId()
634 $lng->
txt(
"noti_notification_deactivated")
638 $caption =
"noti_activate_notification";
643 $lng->
txt(
"noti_notification_activated")
647 $caption =
"noti_deactivate_notification";
650 $lg->addCustomCommand(
668 switch ($this->book_request->getNotification()) {
InternalDomainService $domain
ilObjBookingPoolGUI: ilPermissionGUI, ilBookingObjectGUI ilObjBookingPoolGUI: ilBookingScheduleGUI, ilInfoScreenGUI, ilPublicUserProfileGUI ilObjBookingPoolGUI: ilCommonActionDispatcherGUI, ilObjectCopyGUI, ilObjectMetaDataGUI ilObjBookingPoolGUI: ilBookingParticipantGUI, ilBookingReservationsGUI, ilBookingPreferencesGUI ilObjBookingPoolGUI: ILIAS ilObjBookingPoolGUI: ilRepositoryGUI, ilAdministrationGUI
This class represents an option in a radio group.
ilNavigationHistory $nav_history
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _goto(string $a_target)
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...
GUI class for the workflow of copying objects.
addExternalEditFormCustom(ilPropertyFormGUI $form)
prepareOutput(bool $show_sub_objects=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
getDidacticTemplateVar(string $type)
Get didactic template setting from creation screen.
static _gotoRepositoryNode(int $ref_id, string $cmd="")
setContent(string $a_html)
Sets content for standard template.
loadLanguageModule(string $a_module)
Load language module.
ILIAS Cron Job JobManager $cron_manager
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initEditCustomForm(ilPropertyFormGUI $form)
GUI class for public user profile presentation.
static lookupTemplateId(int $a_ref_id)
Author: Alexander Killing killing@leifos.de
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $obj_id)
static setNotification(int $type, int $user_id, int $id, bool $status=true)
Set notification status for object and user.
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
ilBookingHelpAdapter $help
initDidacticTemplate(ilPropertyFormGUI $form)
Class ilObjectGUI Basic methods of all Output classes.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static getList(int $a_pool_id, ?string $a_title=null)
Get list of booking objects.
static initServiceSettingsForm(int $obj_id, ilPropertyFormGUI $form, array $services)
Last visited history for repository items.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
initHeaderAction(?string $sub_type=null, ?int $sub_id=null)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static hasNotification(int $type, int $user_id, int $id)
Check notification status for object and user.
StandardGUIRequest $book_request
static lookupPoolId(int $object_id)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
const TYPE_NO_SCHEDULE_PREFERENCES
afterSave(ilObject $new_object)
addHeaderAction()
Add header action menu.
infoScreenObject()
this one is called from the info button in the repository
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.