90 $this->ctrl = $DIC->ctrl();
91 $this->lng = $DIC->language();
92 $this->main_tpl = $DIC->ui()->mainTemplate();
94 $this->tabs = $DIC->tabs();
96 $this->lng->loadLanguageModule(
"book");
99 $this->obj_id = (int) $parent_gui->object->getId();
100 $this->ref_id = (int) $parent_gui->object->getRefId();
110 $this->toolbar = $DIC->toolbar();
114 if (in_array($_REQUEST[
"return_to"], [
"ilbookingobjectservicegui",
"ilbookingreservationsgui"])) {
115 $this->return_to = $_REQUEST[
"return_to"];
119 $handler =
new BookingManager\getObjectSettingsCommandHandler(
123 $this->current_settings = $handler->handle()->getSettings();
127 if (is_object($this->pool)) {
129 $DIC[
"ilHelp"]->setScreenIdComponent(
"book");
147 $ctrl->saveParameter($this,
"pool_ref_id");
148 $pool_ref_id = (
$_POST[
"pool_ref_id"] > 0)
149 ? (
int)
$_POST[
"pool_ref_id"]
150 : (int)
$_GET[
"pool_ref_id"];
152 $book_ref_ids = $this->use_book_repo->getUsedBookingPools(
ilObject::_lookupObjId($this->main_host_ref_id));
154 $this->pools_selected = (count($book_ref_ids) > 0);
156 if (!in_array($pool_ref_id, $book_ref_ids)) {
157 if (count($book_ref_ids) > 0) {
158 $pool_ref_id = current($book_ref_ids);
163 $this->current_pool_ref_id = $pool_ref_id;
164 if ($this->current_pool_ref_id > 0) {
166 $ctrl->setParameter($this,
"pool_ref_id", $this->current_pool_ref_id);
178 $next_class =
$ctrl->getNextClass($this);
179 $cmd =
$ctrl->getCmd(
"show");
181 switch ($next_class) {
182 case "ilpropertyformgui":
184 $ctrl->setReturn($this,
'settings');
185 $ctrl->forwardCommand($form);
188 case "ilbookingobjectservicegui":
193 $this->current_pool_ref_id,
194 $this->use_book_repo,
199 $ctrl->forwardCommand($book_ser_gui);
202 case "ilbookingreservationsgui":
206 $this->ctrl->forwardCommand($res_gui);
211 if (in_array($cmd, array(
"show",
"settings",
"saveSettings",
"selectPool"))) {
228 $this->ctrl->setParameter($this,
"return_to", $return_to);
229 if (count($options) > 0) {
231 $si->setOptions($options);
232 $si->setValue($this->current_pool_ref_id);
233 $this->toolbar->setFormAction($this->ctrl->getFormAction($this));
234 $this->toolbar->addInputItem(
$si,
false);
235 $this->toolbar->addFormButton($this->lng->txt(
"book_select_pool"),
"selectPool");
244 if ($this->return_to !=
"") {
245 $this->ctrl->redirectByClass($this->return_to);
260 if ($this->pools_selected) {
263 $lng->txt(
"book_objects_list"),
264 $ctrl->getLinkTargetByClass(
"ilbookingobjectservicegui",
"")
268 $lng->txt(
"book_log"),
269 $ctrl->getLinkTargetByClass(
"ilbookingreservationsgui",
"")
272 if ($this->ref_id == $this->main_host_ref_id) {
275 $lng->txt(
"settings"),
276 $ctrl->getLinkTarget($this,
"settings")
280 $tabs->activateSubTab($active);
290 if ($this->pools_selected) {
291 $ctrl->redirectByClass(
"ilbookingobjectservicegui");
292 } elseif ($this->ref_id == $this->main_host_ref_id) {
293 $ctrl->redirect($this,
"settings");
327 $repo->getExplorerGUI()->setTypeWhiteList(
328 [
"book",
"root",
"cat",
"grp",
"fold",
"crs"]
330 $form->addItem($repo);
331 $repo->setValue($this->current_settings->getUsedBookingObjectIds());
333 $form->addCommandButton(
"saveSettings",
$lng->txt(
"save"));
335 $form->setTitle(
$lng->txt(
"book_pool_selection"));
336 $form->setFormAction(
$ctrl->getFormAction($this));
351 if ($form->checkInput()) {
352 $b_ids = $form->getInput(
"booking_obj_ids");
353 $b_ids = is_array($b_ids)
354 ? array_map(
function (
$i) {
361 $form->setValuesByPost();
371 $repo = $this->use_book_repo;
372 $handler =
new BookingManager\saveObjectSettingsCommandHandler($cmd, $repo);
375 ilUtil::sendSuccess(
$lng->txt(
"msg_obj_modified"),
true);
376 $ctrl->redirect($this,
"");
378 $form->setValuesByPost();
391 foreach ($ids as $pool_ref_id) {
Value object for booking service settings of a repository object.
static hasExistingSchedules($a_pool_id)
Check if given pool has any defined schedules.
This repo stores infos on repository objects that are using booking managers as a service (resource m...
initSettingsForm()
Init settings form.
Help adapter for booking manager.
__construct(ilObjectGUI $parent_gui, $main_host_ref_id=0)
Constructor.
This class is used for inegration of the booking manager as a service into other repository objects...
static _lookupTitle($a_id)
lookup object title
static _lookupObjectId($a_ref_id)
lookup object id
executeCommand()
Execute command.
saveSettings()
Save settings form.
Class ilObjectGUI Basic methods of all Output classes.
static _lookupObjId($a_id)
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
showPoolSelector($return_to)
Pool selector.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
checkBookingPoolsForSchedules($ids)
Check if all pools have schedules.
setSubTabs($active)
Set sub tabs.