19 declare(strict_types=1);
35 protected InternalDataService
$data,
37 protected InternalGUIService $gui,
38 protected int $obj_id,
40 protected bool $creation_mode,
41 protected object $parent_gui
47 $ctrl = $this->gui->ctrl();
48 $next_class = $ctrl->getNextClass($this);
49 $cmd = $ctrl->getCmd(
"edit");
51 switch ($next_class) {
52 case strtolower(ilDidacticTemplateGUI::class):
53 $ctrl->setReturn($this,
'edit');
58 $ctrl->forwardCommand($did);
62 if (in_array($cmd, [
"edit",
"save"])) {
68 protected function edit(): void
70 $mt = $this->gui->ui()->mainTemplate();
72 $mt->setContent($form->render());
77 $lng = $this->domain->lng();
78 $settings = $this->domain->bookingSettings()->getByObjId($this->obj_id);
79 $form = $this->gui->form(self::class,
"save")
80 ->section(
"general",
$lng->txt(
"book_edit"))
85 $form = $form->addDidacticTemplates(
94 $lng->txt(
"book_schedule_type"),
96 (string) $settings->getScheduleType()
101 $lng->txt(
"book_schedule_type_fixed"),
102 $lng->txt(
"book_schedule_type_fixed_info")
106 $lng->txt(
"book_reservation_filter_period"),
107 $lng->txt(
"days") .
" - " .
108 $lng->txt(
"book_reservation_filter_period_info"),
109 $settings->getReservationPeriod()
113 $lng->txt(
"book_reminder_setting"),
115 (bool) $settings->getReminderStatus()
119 $lng->txt(
"book_reminder_day"),
121 max($settings->getReminderDay(), 1)
125 $lng->txt(
"book_schedule_type_none_direct"),
126 $lng->txt(
"book_schedule_type_none_direct_info")
130 $lng->txt(
"book_bookings_per_user") .
" - " .
131 $lng->txt(
"book_overall_limit"),
133 $settings->getOverallLimit()
136 $pref_options_disabled =
false;
138 $pref_manager = $this->domain->preferences(
141 $pref_options_disabled = $pref_manager->hasRun();
147 $lng->txt(
"book_schedule_type_none_preference"),
148 $lng->txt(
"book_schedule_type_none_preference_info")
153 $lng->txt(
"book_nr_of_preferences"),
154 $lng->txt(
"book_nr_preferences") .
" - " .
155 $lng->txt(
"book_nr_of_preferences_info"),
156 $settings->getPreferenceNr()
158 if ($pref_options_disabled) {
159 $form = $form->disabled();
164 $lng->txt(
"book_pref_deadline"),
165 $lng->txt(
"book_pref_deadline_info"),
166 $settings->getPrefDeadline()
173 if ($pref_options_disabled) {
174 $form = $form->disabled();
176 if (!$mode_disabled) {
177 $form = $form->required();
182 if ($mode_disabled) {
183 $form = $form->disabled(
true);
189 $lng->txt(
"book_public_log"),
190 $lng->txt(
"book_public_log_info"),
191 $settings->getPublicLog()
195 $lng->txt(
"book_messages"),
196 $lng->txt(
"book_messages_info"),
197 $settings->getMessages()
200 $lng->loadLanguageModule(
"rep");
205 $lng->txt(
'rep_activation_availability')
215 $lng->txt(
'obj_presentation')
221 $form = $form->addAdditionalFeatures(
231 protected function save(): void
233 $mt = $this->gui->ui()->mainTemplate();
235 $ctrl = $this->gui->ctrl();
236 $lng = $this->domain->lng();
238 $old_settings = $this->domain->bookingSettings()->getByObjId($this->obj_id);
240 if ($form->isValid()) {
241 $form->saveStdTitleAndDescription(
253 $form->saveAdditionalFeatures(
260 $settings = $this->data->settings(
262 (
bool) $form->getData(
"public"),
263 (
int) $form->getData(
"stype"),
264 (
int) $form->getData(
"limit"),
265 (
int) $form->getData(
"period"),
266 (bool) $form->getData(
"rmd"),
267 (
int) $form->getData(
"rmd_day"),
268 $form->getData(
"pref_deadline")
269 ? (
int) $form->getData(
"pref_deadline")->getUnixTime()
271 (
int) $form->getData(
"preference_nr"),
272 (bool) $form->getData(
"messages")
275 $this->domain->bookingSettings()->update($settings);
279 $form->redirectToDidacticConfirmationIfChanged(
285 $mt->setOnScreenMessage(
"success",
$lng->txt(
"msg_obj_modified"),
true);
286 $ctrl->redirectByClass(self::class,
"edit");
288 $mt = $this->gui->ui()->mainTemplate();
289 $mt->setContent($form->render());
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(protected InternalDataService $data, protected InternalDomainService $domain, protected InternalGUIService $gui, protected int $obj_id, protected int $ref_id, protected bool $creation_mode, protected object $parent_gui)
static getList(int $a_pool_id, ?string $a_title=null)
Get list of booking objects.
const TYPE_NO_SCHEDULE_PREFERENCES