ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPCAMDFormGUI.php
Go to the documentation of this file.
1 <?php
2 
22 
30 {
32  protected \ILIAS\DI\UIServices $ui;
35 
36  public function __construct(
37  ilPageObject $a_pg_obj,
38  ?ilPageContent $a_content_obj,
39  string $a_hier_id,
40  string $a_pc_id = ""
41  ) {
42  global $DIC;
43  $this->ctrl = $DIC->ctrl();
44  $this->ui = $DIC->ui();
45  $this->http_request = $DIC->http()->request();
46  $this->port_request = $DIC->portfolio()
47  ->internal()
48  ->gui()
49  ->standardRequest();
50  parent::__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
51 
52  $this->lng->loadLanguageModule("prtt");
53  $this->lng->loadLanguageModule("prtf");
54  }
55 
56  public function executeCommand(): void
57  {
58  // get next class that processes or forwards current command
59  $next_class = $this->ctrl->getNextClass($this);
60 
61  // get current command
62  $cmd = $this->ctrl->getCmd();
63 
64  switch ($next_class) {
65  case "ilpropertyformgui":
66  $form = $this->getPortfolioForm(true);
67  $this->ctrl->forwardCommand($form);
68  break;
69 
70  default:
71  $ret = $this->$cmd();
72  break;
73  }
74  }
75 
76  protected function isTemplate(): bool
77  {
78  return ($this->getPage()->getParentType() === "prtt");
79  }
80 
81  public function insert(?Form\Standard $form = null): void
82  {
83  $tpl = $this->tpl;
84 
85  $this->displayValidationError();
86 
87  if (!$form) {
88  $form = $this->getTemplateForm();
89  }
90  $tpl->setContent($this->ui->renderer()->render($form));
91  }
92 
93  public function edit(): void
94  {
95  if ($this->isTemplate()) {
96  $this->editTemplate();
97  return;
98  }
99  $this->editPortfolio();
100  }
101 
102  public function editTemplate(?Form\Standard $form = null): void
103  {
104  $tpl = $this->tpl;
105 
106  $this->displayValidationError();
107 
108  if (!$form) {
109  $form = $this->getTemplateForm(true);
110  }
111  $tpl->setContent($this->ui->renderer()->render($form));
112  }
113 
114  public function getTemplateForm(bool $edit = false): Form\Standard
115  {
116  $ui = $this->ui;
117  $f = $ui->factory();
118  $ctrl = $this->ctrl;
119 
120  $selected = [];
121  if ($edit) {
122  $selected = $this->content_obj->getRecordIds();
123  }
124  $recs = $this->getAdvRecords();
125  $fields = array();
126  foreach ($recs as $r) {
127  $val = (in_array($r->getRecordId(), $selected));
128  $fields["rec" . $r->getRecordId()] =
129  $f->input()->field()->checkbox($r->getTitle(), $r->getDescription())
130  ->withValue($val);
131  }
132 
133  // section
134  $section1 = $f->input()->field()->section($fields, $this->lng->txt("prtt_select_datasets"));
135 
136  if ($edit) {
137  $form_action = $ctrl->getLinkTarget($this, "update");
138  } else {
139  $form_action = $ctrl->getLinkTarget($this, "create_amdfrm");
140  }
141  return $f->input()->container()->form()->standard($form_action, ["sec" => $section1]);
142  }
143 
144  public function create(): void
145  {
147  $form = $this->getTemplateForm();
148  $lng = $this->lng;
149  $tpl = $this->tpl;
150 
151  if ($request->getMethod() === "POST") {
152  $form = $form->withRequest($request);
153  $data = $form->getData();
154  if (is_null($data)) {
155  $tpl->setContent($this->ui->renderer()->render($form));
156  return;
157  }
158  if (is_array($data["sec"])) {
159  $this->content_obj = new ilPCAMDForm($this->getPage());
160  $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
161  $this->content_obj->setRecordIds($this->getRecordIdsFromForm($form));
162  $this->updated = $this->pg_obj->update();
163  if (!$this->updated) {
164  $tpl->setContent($this->ui->renderer()->render($form));
165  return;
166  }
167  $this->tpl->setOnScreenMessage('info', $lng->txt("msg_obj_modified"), true);
168  }
169  }
170  $this->ctrl->returnToParent($this, "jump" . $this->hier_id);
171  }
172 
173  protected function getRecordIdsFromForm(Form\Standard $form): array
174  {
175  $data = $form->getData();
176  $ids = [];
177  if (!is_null($data) && is_array($data["sec"])) {
178  $recs = $this->getAdvRecords();
179  $ids = [];
180  foreach ($recs as $r) {
181  $rec_id = $data["sec"]["rec" . $r->getRecordId()];
182  if (isset($rec_id) && $rec_id) {
183  $ids[] = $r->getRecordId();
184  }
185  }
186  }
187  return $ids;
188  }
189 
190  protected function getAdvRecords(): array
191  {
192  if ($this->isTemplate()) {
194  $is_ref_id = true;
195  } else {
196  $id = $this->getPage()->getPortfolioId();
197  $is_ref_id = false;
198  }
199 
200  $recs = \ilAdvancedMDRecord::_getSelectedRecordsByObject($this->getPage()->getParentType(), $id, "pfpg", $is_ref_id);
201  return $recs;
202  }
203 
204  public function update(): void
205  {
207  $form = $this->getTemplateForm(true);
208  $lng = $this->lng;
209  $tpl = $this->tpl;
210 
211  if ($request->getMethod() === "POST") {
212  $form = $form->withRequest($request);
213  $data = $form->getData();
214  if (is_null($data)) {
215  $tpl->setContent($this->ui->renderer()->render($form));
216  return;
217  }
218  if (is_array($data["sec"])) {
219  $this->content_obj->setRecordIds($this->getRecordIdsFromForm($form));
220  $this->updated = $this->pg_obj->update();
221  if (!$this->updated) {
222  $tpl->setContent($this->ui->renderer()->render($form));
223  return;
224  }
225  $this->tpl->setOnScreenMessage('info', $lng->txt("msg_obj_modified"), true);
226  }
227  }
228  $this->ctrl->returnToParent($this, "jump" . $this->hier_id);
229  }
230 
234 
235 
239  public function editPortfolio(?ilPropertyFormGUI $form = null): void
240  {
241  $tpl = $this->tpl;
242 
243  $this->displayValidationError();
244 
245  if (!$form) {
246  $form = $this->getPortfolioForm(true);
247  }
248  $tpl->setContent($form->getHTML());
249  }
250 
251  public function getPortfolioForm(bool $edit = false): ilPropertyFormGUI
252  {
254  if (is_null($content_obj)) {
255  $page = new ilPortfolioPage($this->port_request->getPortfolioPageId());
256  $page->buildDom();
257  $content_obj = $page->getContentObjectForPcId($this->request->getPCId());
258  }
259 
260  $lng = $this->lng;
261  $ctrl = $this->ctrl;
262 
263  $selected = [];
264  if ($edit) {
265  $selected = $content_obj->getRecordIds();
266  }
267  $recs = $this->getAdvRecords();
268  foreach ($recs as $r) {
269  $val = (in_array($r->getRecordId(), $selected));
270  }
271 
272  $form = new ilPropertyFormGUI();
273  $form->setFormAction($ctrl->getFormAction($this, "updateAdvancedMetaData"));
274 
275  $form->setTitle($lng->txt("prtf_edit_data"));
276 
277  $this->record_gui = new ilAdvancedMDRecordGUI(
279  'prtf',
280  $this->getPage()->getPortfolioId(),
281  'pfpg',
282  $this->getPage()->getId(),
283  false
284  );
285  $this->record_gui->setRecordFilter($selected);
286  $this->record_gui->setPropertyForm($form);
287  $this->record_gui->parse();
288 
289  $form->addCommandButton("updateAdvancedMetaData", $lng->txt("save"));
290  $form->addCommandButton("cancel", $lng->txt("cancel"));
291 
292  return $form;
293  }
294 
295  public function updateAdvancedMetaData(): void
296  {
297  $lng = $this->lng;
298 
299  $form = $this->getPortfolioForm(true);
300 
301  // needed for proper advanced MD validation
302  $form->checkInput();
303  if (!$this->record_gui->importEditFormPostValues()) {
304  $this->editPortfolio($form); // #16470
305  return;
306  }
307 
308  if ($this->record_gui->writeEditForm()) {
309  $this->tpl->setOnScreenMessage('success', $lng->txt("settings_saved"), true);
310  }
311  $this->ctrl->returnToParent($this, "jump" . $this->hier_id);
312  }
313 }
getPortfolioForm(bool $edit=false)
getFormAction(object $a_gui_obj, ?string $a_fallback_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
__construct(ilPageObject $a_pg_obj, ?ilPageContent $a_content_obj, string $a_hier_id, string $a_pc_id="")
This describes commonalities between all forms.
Definition: Form.php:32
StandardGUIRequest $port_request
buildDom(bool $a_force=false)
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...
ilAdvancedMDRecordGUI $record_gui
ServerRequestInterface $http_request
editTemplate(?Form\Standard $form=null)
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
getRecordIdsFromForm(Form\Standard $form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
setContent(string $a_html)
Sets content for standard template.
ILIAS DI UIServices $ui
static _getSelectedRecordsByObject(string $a_obj_type, int $a_id, string $a_sub_type="", bool $is_ref_id=true)
Content object of ilPageObject (see ILIAS DTD).
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
AMD Form Page UI.
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
global $DIC
Definition: shib_login.php:22
ilGlobalTemplateInterface $tpl
getTemplateForm(bool $edit=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
This describes a standard form.
Definition: Standard.php:28
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
insert(?Form\Standard $form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
editPortfolio(?ilPropertyFormGUI $form=null)
Edit courses form.
$r