43 $this->tpl = $DIC->ui()->mainTemplate();
44 $this->
tabs = $DIC->tabs();
45 $this->
ctrl = $DIC->ctrl();
46 $this->
lng = $DIC->language();
47 $this->
access = $DIC->access();
48 $this->
help = $DIC[
"ilHelp"];
49 $this->obj_data_cache = $DIC[
"ilObjDataCache"];
50 $this->ref_id = $a_parent_obj->
getRefId();
51 $this->book_request = $DIC->bookingManager()
55 $this->schedule_id = $this->book_request->getScheduleId();
69 switch ($next_class) {
71 $cmd = $ilCtrl->getCmd(
"render");
91 if ($ilAccess->checkAccess(
'write',
'', $this->ref_id)) {
93 if (count($table->getData())) {
95 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"book_type_warning"));
100 $bar->addButton($lng->
txt(
'book_add_schedule'), $ilCtrl->getLinkTarget($this,
'create'));
118 $ilTabs->clearTargets();
119 $ilTabs->setBackTarget($lng->
txt(
'book_back_to_list'), $ilCtrl->getLinkTarget($this,
'render'));
121 $ilHelp->setScreenId(
"schedules");
122 $ilHelp->setSubScreenId(
"create");
139 $ilTabs->clearTargets();
140 $ilTabs->setBackTarget($lng->
txt(
'book_back_to_list'), $ilCtrl->getLinkTarget($this,
'render'));
142 $ilHelp->setScreenId(
"schedules");
143 $ilHelp->setSubScreenId(
"edit");
145 $form = $this->
initForm(
'edit', $this->schedule_id);
153 string $a_mode =
"create",
164 $title->setRequired(
true);
166 $title->setMaxLength(120);
167 $form_gui->addItem($title);
170 $definition->
setInfo($lng->
txt(
"book_schedule_days_info"));
171 $definition->setRequired(
true);
172 $form_gui->addItem($definition);
176 $form_gui->addItem($deadline_opts);
178 $deadline_time =
new ilRadioOption($lng->
txt(
"book_deadline_hours"),
"hours");
179 $deadline_opts->addOption($deadline_time);
182 $deadline->
setInfo($lng->
txt(
"book_deadline_info"));
183 $deadline->setSuffix($lng->
txt(
"book_hours"));
184 $deadline->setMinValue(1);
185 $deadline->setSize(3);
186 $deadline->setMaxLength(3);
187 $deadline_time->addSubItem($deadline);
189 $deadline_start =
new ilRadioOption($lng->
txt(
"book_deadline_slot_start"),
"slot_start");
190 $deadline_opts->addOption($deadline_start);
192 $deadline_slot =
new ilRadioOption($lng->
txt(
"book_deadline_slot_end"),
"slot_end");
193 $deadline_opts->addOption($deadline_slot);
195 if ($a_mode ===
"edit") {
200 $av->setTitle($lng->
txt(
"obj_activation_list_gui"));
201 $form_gui->addItem($av);
208 $form_gui->addItem($from);
212 $form_gui->addItem($to);
214 if ($a_mode ===
"edit") {
215 $form_gui->setTitle($lng->
txt(
"book_edit_schedule"));
218 $item->setValue(
$id);
219 $form_gui->addItem($item);
222 $title->setValue($schedule->getTitle());
223 $from->setDate($schedule->getAvailabilityFrom());
224 $to->setDate($schedule->getAvailabilityTo());
226 if ($schedule->getDeadline() === 0) {
227 $deadline_opts->setValue(
"slot_start");
228 } elseif ($schedule->getDeadline() > 0) {
229 $deadline->setValue($schedule->getDeadline());
230 $deadline_opts->setValue(
"hours");
232 $deadline->setValue(0);
233 $deadline_opts->setValue(
"slot_end");
236 $definition->setValue($schedule->getDefinitionBySlots());
238 $form_gui->addCommandButton(
"update", $lng->
txt(
"save"));
240 $form_gui->setTitle($lng->
txt(
"book_add_schedule"));
241 $form_gui->addCommandButton(
"save", $lng->
txt(
"save"));
242 $form_gui->addCommandButton(
"render", $lng->
txt(
"cancel"));
244 $form_gui->setFormAction($ilCtrl->getFormAction($this));
255 if ($form->checkInput()) {
260 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"book_schedule_added"));
263 $form->setValuesByPost();
273 $form = $this->
initForm(
'edit', $this->schedule_id);
274 if ($form->checkInput()) {
279 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"book_schedule_updated"));
282 $form->setValuesByPost();
297 $schedule->
setPoolId($ilObjDataCache->lookupObjId($this->ref_id));
300 if ($from !== null) {
309 switch ($form->
getInput(
"deadline_opts")) {
358 $conf->setFormAction($ilCtrl->getFormAction($this));
359 $conf->setHeaderText($lng->
txt(
'book_confirm_delete'));
362 $conf->addItem(
'schedule_id', $this->schedule_id,
$type->getTitle());
363 $conf->setConfirm($lng->
txt(
'delete'),
'delete');
364 $conf->setCancel($lng->
txt(
'cancel'),
'render');
372 public function delete():
void 380 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
'book_schedule_deleted'),
true);
381 $ilCtrl->redirect($this,
'render');
setDeadline(int $a_deadline)
Set deadline.
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...
static lookupPoolId(int $schedule_id)
initForm(string $a_mode="create", ?int $id=null)
Build property form.
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
loadLanguageModule(string $a_module)
Load language module.
ILIAS BookingManager StandardGUIRequest $book_request
__construct(ilObjBookingPoolGUI $a_parent_obj)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getNextClass($a_gui_class=null)
setContent(string $a_html)
Sets content for standard template.
setSubScreenId(string $a_id)
setScreenIdComponent(string $a_comp)
setDefinitionBySlots(array $a_def)
create()
Render creation form.
formToObject(ilPropertyFormGUI $form, ilBookingSchedule $schedule)
Set form data into schedule object.
setAvailabilityTo(?ilDateTime $a_date=null)
setAvailabilityFrom(?ilDateTime $a_date=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
render()
Render list of booking schedules uses ilBookingSchedulesTableGUI.
confirmDelete()
Confirm delete.
setTitle(string $a_title)
ilObjectDataCache $obj_data_cache
setPoolId(int $a_pool_id)
static getList(int $a_pool_id, string $a_title=null)
Get list of booking objects.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...