29 protected \ilCtrlInterface
$ctrl;
30 protected \ILIAS\DI\UIServices
$ui;
31 protected \ilLanguage
$lng;
40 $this->
ui = $DIC->ui();
41 $this->
lng = $DIC->language();
42 $this->
ctrl = $DIC->ctrl();
44 $this->
user = $DIC->user();
51 switch ($body[
"action"]) {
59 throw new Exception(
"Unknown action " . $body[
"action"]);
65 $page = $this->page_gui->getPageObject();
69 if (!in_array($body[
"after_pcid"], [
"",
"pg"])) {
70 $hier_ids = $page->getHierIdsForPCIds([$body[
"after_pcid"]]);
71 $hier_id = $hier_ids[$body[
"after_pcid"]];
72 $pc_id = $body[
"after_pcid"];
76 $sec = new \ilPCSection($page);
77 $sec->create($page, $hier_id, $pc_id);
78 $sec_gui = new \ilPCSectionGUI($page, $sec,
"",
"");
79 $sec_gui->setPageConfig($page->getPageConfig());
81 $form = $sec_gui->initForm(
true);
85 if ($sec_gui->checkInput($form)) {
86 $sec_gui->setValuesFromForm($form);
89 $html = $this->
ctrl->getHTML(
93 "ui_wrapper" => $this->ui_wrapper,
94 "update_fail" =>
true,
96 "buttons" => [[
"Page",
"component.save", $this->
lng->txt(
"insert")],
97 [
"Page",
"component.cancel", $this->
lng->txt(
"cancel")]]
100 return $this->ui_wrapper->sendFormError($html);
103 return $this->ui_wrapper->sendPage($this->page_gui,
$updated);
108 $page = $this->page_gui->getPageObject();
110 $hier_id = $page->getHierIdForPcId($body[
"pcid"]);
111 $sec = $page->getContentObjectForPcId($body[
"pcid"]);
112 $sec_gui = new \ilPCSectionGUI($page, $sec, $hier_id, $body[
"pcid"]);
113 $sec_gui->setStyleId($this->page_gui->getStyleId());
114 $sec_gui->setPageConfig($page->getPageConfig());
116 $form = $sec_gui->initForm(
false);
120 if ($sec_gui->checkInput($form)) {
121 $sec_gui->setValuesFromForm($form);
124 $html = $this->
ctrl->getHTML(
128 "ui_wrapper" => $this->ui_wrapper,
129 "update_fail" =>
true,
130 "buttons" => [[
"Page",
"component.update", $this->
lng->txt(
"save")],
131 [
"Page",
"component.cancel", $this->
lng->txt(
"cancel")]]
134 return $this->ui_wrapper->sendFormError($html);
137 return $this->ui_wrapper->sendPage($this->page_gui,
$updated);
insertCommand(array $body)
Server UIWrapper $ui_wrapper
Command action handler interface.
updateCommand(array $body)
ilPageObjectGUI $page_gui
handle(array $query, array $body)
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...
__construct(\ilPageObjectGUI $page_gui)