42 $ilCtrl = $DIC[
'ilCtrl'];
44 $ilTabs = $DIC[
'ilTabs'];
45 $locator = $DIC[
'ilLocator'];
49 $this->
ctrl = $ilCtrl;
52 $this->tabs_gui = $ilTabs;
53 $this->
http = $DIC->http();
56 $this->
ctrl->saveParameterByClass(
'ilDclTableEditGUI',
'table_id');
57 $this->
ctrl->saveParameter($this,
'tableview_id');
58 if ($this->tableview->getTitle()) {
59 $locator->addItem($this->tableview->getTitle(), $this->
ctrl->getLinkTarget($this,
'show'));
61 $this->tpl->setLocator();
66 $cmd = $this->
ctrl->getCmd(
'show');
67 $next_class = $this->
ctrl->getNextClass($this);
73 $this->tabs_gui->clearTargets();
74 $this->tabs_gui->clearSubTabs();
75 $this->tabs_gui->setBackTarget(
76 $this->
lng->txt(
'dcl_tableviews'),
77 $this->
ctrl->getLinkTarget($this->parent_obj)
79 $this->tabs_gui->setBack2Target(
80 $this->
lng->txt(
'dcl_tables'),
81 $this->
ctrl->getLinkTarget($this->parent_obj->getParentObj())
84 switch ($next_class) {
85 case 'ildcldetailedviewdefinitiongui':
86 $this->
setTabs(
'detailed_view');
88 $ret = $this->
ctrl->forwardCommand($recordedit_gui);
90 $this->tpl->setContent($ret);
93 $ilTabs = $DIC[
'ilTabs'];
94 $ilTabs->removeTab(
'edit');
95 $ilTabs->removeTab(
'history');
96 $ilTabs->removeTab(
'clipboard');
97 $ilTabs->removeTab(
'pg');
99 case 'ildclcreateviewdefinitiongui':
102 $this->
ctrl->forwardCommand($creation_gui);
104 $ilTabs = $DIC[
'ilTabs'];
105 $ilTabs->removeTab(
'edit');
106 $ilTabs->removeTab(
'history');
107 $ilTabs->removeTab(
'clipboard');
108 $ilTabs->removeTab(
'pg');
110 case 'ildcleditviewdefinitiongui':
113 $this->
ctrl->forwardCommand($edit_gui);
115 $ilTabs = $DIC[
'ilTabs'];
116 $ilTabs->removeTab(
'edit');
117 $ilTabs->removeTab(
'history');
118 $ilTabs->removeTab(
'clipboard');
119 $ilTabs->removeTab(
'pg');
124 if ($this->tableview->getId()) {
125 $this->
ctrl->redirect($this,
'editGeneralSettings');
127 $this->
ctrl->redirect($this,
'add');
132 $this->tpl->setContent($ilDclTableViewEditFormGUI->getHTML());
134 case 'editGeneralSettings':
135 $settings_tpl =
new ilTemplate(
"tpl.dcl_settings.html",
true,
true,
'Modules/DataCollection');
137 $this->
setTabs(
'general_settings');
141 $f = $DIC->ui()->factory()->listing()->workflow();
142 $renderer = $DIC->ui()->renderer();
150 if (!is_null($view)) {
152 $step =
$f->step(
'',
'');
154 $f->step($this->
lng->txt(
'dcl_view_settings'))
155 ->withAvailability($step::AVAILABLE)->withStatus(4),
156 $f->step($this->
lng->txt(
'dcl_create_entry_rules'))
157 ->withAvailability($step::AVAILABLE)->withStatus(4),
158 $f->step($this->
lng->txt(
'dcl_edit_entry_rules'))
159 ->withAvailability($step::AVAILABLE)->withStatus(4),
160 $f->step($this->
lng->txt(
'dcl_list_visibility_and_filter'))
161 ->withAvailability($step::AVAILABLE)->withStatus(4),
162 $f->step($this->
lng->txt(
'dcl_detailed_view'))
163 ->withAvailability($step::AVAILABLE)->withStatus(1),
167 $wf =
$f->linear($this->
lng->txt(
'dcl_view_configuration'),
$steps);
168 $settings_tpl->setVariable(
"WORKFLOW", $renderer->render($wf));
171 $settings_tpl->setVariable(
"SETTINGS", $ilDclTableViewEditFormGUI->getHTML());
173 $this->tpl->setContent($settings_tpl->get());
175 case 'editFieldSettings':
176 $this->
setTabs(
'field_settings');
178 $this->tpl->setContent($this->table_gui->getHTML());
188 protected function setTabs(
string $active): void
190 $this->tabs_gui->addTab(
192 $this->
lng->txt(
'dcl_view_settings'),
193 $this->
ctrl->getLinkTarget($this,
'editGeneralSettings')
195 $this->tabs_gui->addTab(
197 $this->
lng->txt(
'dcl_create_entry_rules'),
198 $this->
ctrl->getLinkTargetByClass(
'ilDclCreateViewDefinitionGUI',
'presentation')
200 $this->tabs_gui->addTab(
202 $this->
lng->txt(
'dcl_edit_entry_rules'),
203 $this->
ctrl->getLinkTargetByClass(
'ilDclEditViewDefinitionGUI',
'presentation')
205 $this->tabs_gui->addTab(
207 $this->
lng->txt(
'dcl_list_visibility_and_filter'),
208 $this->
ctrl->getLinkTarget($this,
'editFieldSettings')
210 $this->tabs_gui->addTab(
212 $this->
lng->txt(
'dcl_detailed_view'),
213 $this->
ctrl->getLinkTargetByClass(
'ilDclDetailedViewDefinitionGUI',
'edit')
215 $this->tabs_gui->setTabActive($active);
221 $ilDclTableViewEditFormGUI->setValuesByPost();
222 if ($ilDclTableViewEditFormGUI->checkInput()) {
223 $ilDclTableViewEditFormGUI->updateTableView();
224 $this->
ctrl->redirect($this,
'editGeneralSettings');
226 $this->
setTabs(
'general_settings');
227 $this->tpl->setContent($ilDclTableViewEditFormGUI->getHTML());
234 $ilDclTableViewEditFormGUI->setValuesByPost();
235 if ($ilDclTableViewEditFormGUI->checkInput()) {
236 $ilDclTableViewEditFormGUI->createTableView();
237 $this->
ctrl->redirect($this,
'editGeneralSettings');
239 $this->tpl->setContent($ilDclTableViewEditFormGUI->getHTML());
243 public function saveTable():
void 248 foreach ($this->tableview->getFieldSettings() as $setting) {
250 foreach (array(
"Visible",
"InFilter",
"FilterChangeable") as $attribute) {
251 $key = $attribute .
'_' . $setting->getField();
252 if ($this->
http->wrapper()->post()->has(
$key)) {
253 $checkbox_value = $this->
http->wrapper()->post()->retrieve(
255 $this->
refinery->kindlyTo()->string()
257 $setting->{
'set' . $attribute}($checkbox_value ===
'on');
259 $setting->{
'set' . $attribute}(
false);
264 $key =
'filter_' . $setting->getField();
265 if ($this->
http->wrapper()->post()->has($key)) {
266 $setting->setFilterValue($this->
http->wrapper()->post()->retrieve(
268 $this->
refinery->kindlyTo()->string()
270 } elseif ($this->
http->wrapper()->post()->has($key .
'_from') && $this->
http->wrapper()->post()->has($key .
'_to')) {
271 $setting->setFilterValue(array(
"from" => $this->
http->wrapper()->post()->retrieve(
273 $this->
refinery->kindlyTo()->string()
275 "to" => $this->
http->wrapper()->post()->retrieve(
277 $this->
refinery->kindlyTo()->string()
281 $setting->setFilterValue(null);
289 if (!is_null($view)) {
290 $view->setStepO(
true);
294 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableview_updated'),
true);
295 $this->
ctrl->saveParameter($this->parent_obj,
'tableview_id');
296 $this->
ctrl->redirect($this,
'editFieldSettings');
302 $this->table_gui =
$table;
307 $this->
ctrl->setParameter($this->parent_obj,
'table_id', $this->table->getId());
308 $this->
ctrl->redirect($this->parent_obj);
314 $this->parent_obj->checkViewsLeft(1);
317 $conf->setFormAction($this->
ctrl->getFormAction($this));
318 $conf->setHeaderText($this->
lng->txt(
'dcl_tableview_confirm_delete'));
320 $conf->addItem(
'tableview_id', (
int) $this->tableview->getId(), $this->tableview->getTitle());
322 $conf->setConfirm($this->
lng->txt(
'delete'),
'delete');
323 $conf->setCancel($this->
lng->txt(
'cancel'),
'cancel');
325 $this->tpl->setContent($conf->getHTML());
328 protected function delete():
void 330 $this->tableview->delete();
331 $this->table->sortTableViews();
332 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableview_deleted'),
true);
338 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
339 $this->
ctrl->redirectByClass(
340 [ilObjDataCollectionGUI::class, ilDclRecordListGUI::class],
347 if (in_array($cmd, [
'add',
'create'])) {
349 $this->parent_obj->getParentObj()->getDataCollectionObject()->getRefId(),
350 $this->table->getId()
353 return ilObjDataCollectionAccess::hasAccessTo(
354 $this->parent_obj->getParentObj()->getDataCollectionObject()->getRefId(),
355 $this->table->getId(),
356 $this->tableview->getId()
364 $new_tableview->setTableId($this->table->getId());
365 $new_tableview->cloneStructure($this->tableview, array());
366 $this->table->sortTableViews();
367 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"dcl_tableview_copy"),
true);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS HTTP Services $http
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilDclTableViewGUI $parent_obj, ilDclTable $table, ilDclTableView $tableview)
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...
ilDclTableViewGUI $parent_obj
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...
ilDclTableViewEditFieldsTableGUI $table_gui
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static http()
Fetches the global http state from ILIAS.
ILIAS Refinery Factory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalPageTemplate $tpl
static hasAccessToEditTable(int $ref_id, int $table_id)
ilDclTableView $tableview
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...