19 declare(strict_types=1);
42 $main_tpl = $DIC->ui()->mainTemplate();
43 $this->
ctrl = $DIC->ctrl();
44 $this->
lng = $DIC->language();
45 $this->tpl = $DIC->ui()->mainTemplate();
46 $this->
tabs = $DIC->tabs();
47 $this->
toolbar = $DIC->toolbar();
48 $this->
http = $DIC->http();
50 $this->ui_factory = $DIC->ui()->factory();
51 $this->
renderer = $DIC->ui()->renderer();
53 $this->
tabs->setSetupMode(
true);
54 $DIC->help()->setScreenId(
'dcl_tables');
56 $this->parent_obj = $a_parent_obj;
59 $main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
60 $this->
ctrl->redirectByClass(ilDclRecordListGUI::class,
'listRecords');
66 return $this->parent_obj->getObjectId();
71 return $this->parent_obj->getRefId();
80 $cmd = $this->
ctrl->getCmd(
'listTables');
82 $next_class = $this->
ctrl->getNextClass($this);
84 $ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
86 switch ($next_class) {
87 case 'ildcltableeditgui':
88 $this->
tabs->clearTargets();
89 if ($cmd !=
'create') {
92 $this->
tabs->setBackTarget(
93 $this->
lng->txt(
'back'),
94 $this->
ctrl->getLinkTarget($this,
'listTables')
98 $this->
ctrl->forwardCommand($ilDclTableEditGUI);
101 case 'ildclfieldlistgui':
102 $this->
tabs->clearTargets();
105 $this->
ctrl->forwardCommand($ilDclFieldListGUI);
108 case "ildclfieldeditgui":
109 $this->
tabs->clearTargets();
112 $this->
ctrl->forwardCommand($ilDclFieldEditGUI);
115 case 'ildcltableviewgui':
116 $this->
tabs->clearTargets();
119 $this->
ctrl->forwardCommand($ilDclTableViewGUI);
130 $add_new = $this->ui_factory->button()->primary(
131 $this->
lng->txt(
"dcl_add_new_table"),
132 $this->
ctrl->getLinkTargetByClass(
'ilDclTableEditGUI',
'create')
134 $this->
toolbar->addStickyItem($add_new);
136 $this->tpl->setContent(
138 $this->ui_factory->panel()->listing()->standard(
139 $this->
lng->txt(
'dcl_tables'),
140 [$this->ui_factory->item()->group(
'', $this->
getItems())]
149 foreach ($this->parent_obj->getDataCollectionObject()->getTables() as $table) {
151 $this->
ctrl->setParameterByClass(ilObjDataCollectionGUI::class,
'table_id', $table->getId());
152 $item = $this->ui_factory->item()->standard(
153 $this->ui_factory->link()->standard(
155 $this->
ctrl->getLinkTargetByClass(ilDclFieldListGUI::class,
'listFields')
159 $this->
lng->txt(
'visible') => $this->
lng->txt($table->getIsVisible() ?
'yes' :
'no'),
160 $this->
lng->txt(
'comments') => $this->
lng->txt($table->getPublicCommentsEnabled() ?
'active' :
'inactive')
163 $this->ui_factory->dropdown()->standard(
168 if ($table->getOrder() === 10) {
169 $item = $item->withDescription($this->
lng->txt(
'default'));
182 $this->
ctrl->setParameterByClass(ilObjDataCollectionGUI::class,
'table_id', $table->
getId());
185 $actions[] = $this->ui_factory->button()->shy(
186 $this->
lng->txt(
'settings'),
187 $this->
ctrl->getLinkTargetByClass(ilDclTableEditGUI::class,
'edit'),
190 $actions[] = $this->ui_factory->button()->shy(
191 $this->
lng->txt(
'dcl_list_fields'),
192 $this->
ctrl->getLinkTargetByClass(ilDclFieldListGUI::class,
'listFields')
195 $actions[] = $this->ui_factory->button()->shy(
196 $this->
lng->txt(
'dcl_tableviews'),
197 $this->
ctrl->getLinkTargetByClass(ilDclTableViewGUI::class,
'show')
200 $actions[] = $this->ui_factory->button()->shy(
201 $this->
lng->txt(
'delete'),
202 $this->
ctrl->getLinkTargetByClass(ilDclTableEditGUI::class,
'confirmDelete')
206 $actions[] = $this->ui_factory->button()->shy(
207 $this->
lng->txt(
'disable_visible'),
208 $this->
ctrl->getLinkTargetByClass(ilDclTableEditGUI::class,
'disableVisible')
211 $actions[] = $this->ui_factory->button()->shy(
212 $this->
lng->txt(
'enable_visible'),
213 $this->
ctrl->getLinkTargetByClass(ilDclTableEditGUI::class,
'enableVisible')
218 $actions[] = $this->ui_factory->button()->shy(
219 $this->
lng->txt(
'disable_comments'),
220 $this->
ctrl->getLinkTargetByClass(ilDclTableEditGUI::class,
'disableComments')
223 $actions[] = $this->ui_factory->button()->shy(
224 $this->
lng->txt(
'enable_comments'),
225 $this->
ctrl->getLinkTargetByClass(ilDclTableEditGUI::class,
'enableComments')
230 $actions[] = $this->ui_factory->button()->shy(
231 $this->
lng->txt(
'set_as_default'),
232 $this->
ctrl->getLinkTargetByClass(ilDclTableEditGUI::class,
'setAsDefault')
239 protected function setTabs(
string $active): void
241 $this->
tabs->setBackTarget($this->
lng->txt(
'dcl_tables'), $this->
ctrl->getLinkTarget($this,
'listTables'));
244 $this->
lng->txt(
'settings'),
245 $this->
ctrl->getLinkTargetByClass(
'ilDclTableEditGUI',
'edit')
249 $this->
lng->txt(
'dcl_list_fields'),
250 $this->
ctrl->getLinkTargetByClass(
'ilDclFieldListGUI',
'listFields')
254 $this->
lng->txt(
'dcl_tableviews'),
255 $this->
ctrl->getLinkTargetByClass(
'ilDclTableViewGUI')
257 $this->
tabs->activateTab($active);
260 protected function save(): void
262 if ($this->
http->wrapper()->post()->has(
"comments")) {
268 if ($this->
http->wrapper()->post()->has(
"visible")) {
269 $visible = $this->
http->wrapper()->post()->retrieve(
274 $orders = $this->
http->wrapper()->post()->retrieve(
280 foreach (array_keys($orders) as $table_id) {
282 $table->setOrder($order);
283 $table->setPublicCommentsEnabled(isset(
$comments[$table_id]));
284 $table->setIsVisible(isset($visible[$table_id]));
288 $this->
ctrl->redirect($this);
294 $has_dcl_table_ids = $this->
http->wrapper()->post()->has(
'dcl_table_ids');
295 if (!$has_dcl_table_ids) {
296 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'dcl_delete_tables_no_selection'),
true);
297 $this->
ctrl->redirect($this,
'listTables');
300 $tables = $this->
http->wrapper()->post()->retrieve(
306 $this->
tabs->clearSubTabs();
308 $conf->setFormAction($this->
ctrl->getFormAction($this));
309 $conf->setHeaderText($this->
lng->txt(
'dcl_tables_confirm_delete'));
311 foreach ($tables as $table_id) {
314 $conf->setConfirm($this->
lng->txt(
'delete'),
'deleteTables');
315 $conf->setCancel($this->
lng->txt(
'cancel'),
'listTables');
316 $this->tpl->setContent($conf->getHTML());
321 $has_dcl_table_ids = $this->
http->wrapper()->post()->has(
'dcl_table_ids');
322 if ($has_dcl_table_ids) {
323 $tables = $this->
http->wrapper()->post()->retrieve(
327 foreach ($tables as $table_id) {
331 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tables_deleted'),
true);
332 $this->
ctrl->clearParameterByClass(
"ilobjdatacollectiongui",
"table_id");
333 $this->
ctrl->redirect($this,
'listTables');
343 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'dcl_msg_tables_delete_all'),
true);
344 $this->
ctrl->redirect($this,
'listTables');
350 $ref_id = $this->parent_obj->getRefId();
357 return $this->parent_obj->getDataCollectionObject();
ilObjDataCollectionGUI $parent_obj
checkTablesLeft(int $delete_count)
redirects if there are no tableviews left after deletion of {$delete_count} tableviews ...
getPublicCommentsEnabled()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDataCollectionObject()
ilDclTableViewGUI: ilDclTableViewEditGUI
ilDclTableListGUI: ilDclFieldListGUI, ilDclFieldEditGUI, ilDclTableViewGUI, ilDclTableEditGUI ...
getActions(ilDclTable $table)
ilObjDataCollectionGUI: ilInfoScreenGUI, ilNoteGUI, ilCommonActionDispatcherGUI ilObjDataCollectionG...
__construct(ilObjDataCollectionGUI $a_parent_obj)
static http()
Fetches the global http state from ILIAS.
executeCommand()
execute command
static getTableCache(?int $table_id=null)
static hasWriteAccess(int $ref, ?int $user_id=0)
ILIAS Refinery Factory $refinery
ILIAS HTTP Services $http
ilGlobalTemplateInterface $tpl
ILIAS UI Factory $ui_factory
ILIAS UI Renderer $renderer