19 declare(strict_types=1);
43 $this->
http = $DIC->http();
45 $this->table_id = $this->
http->wrapper()->query()->retrieve(
'table_id', $this->
refinery->kindlyTo()->int());
46 $locator = $DIC[
'ilLocator'];
47 $this->parent_obj = $a_parent_obj;
48 $this->obj_id = $a_parent_obj->
getObjId();
49 $this->
ctrl = $DIC->ctrl();
50 $this->
lng = $DIC->language();
51 $this->tpl = $DIC->ui()->mainTemplate();
52 $this->
tabs = $DIC->tabs();
53 $this->
toolbar = $DIC->toolbar();
54 $this->ui_factory = $DIC->ui()->factory();
55 $this->
renderer = $DIC->ui()->renderer();
57 $DIC->help()->setScreenId(
'dcl_fields');
59 $this->
ctrl->saveParameterByClass(ilDclTableEditGUI::class,
'table_id');
62 $this->
ctrl->getLinkTargetByClass(ilDclTableEditGUI::class,
'edit')
64 $this->tpl->setLocator();
67 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
68 $this->
ctrl->redirectByClass(ilDclRecordListGUI::class,
'listRecords');
82 $cmd = $this->
ctrl->getCmd(
'listFields');
91 if ($this->
http->wrapper()->post()->has(
'dcl_field_ids')) {
92 $field_ids = $this->
http->wrapper()->post()->retrieve(
97 foreach ($field_ids as $field_id) {
98 $table->deleteField($field_id);
102 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_fields_deleted'),
true);
103 $this->
ctrl->redirect($this,
'listFields');
109 public function confirmDeleteFields():
void 111 $this->
tabs->clearSubTabs();
113 $conf->setFormAction($this->
ctrl->getFormAction($this));
114 $conf->setHeaderText($this->
lng->txt(
'dcl_confirm_delete_fields'));
116 $has_field_ids = $this->
http->wrapper()->post()->has(
'dcl_field_ids');
117 if (!$has_field_ids) {
118 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'dcl_delete_fields_no_selection'),
true);
119 $this->
ctrl->redirect($this,
'listFields');
122 $field_ids = $this->
http->wrapper()->post()->retrieve(
126 foreach ($field_ids as $field_id) {
129 $conf->addItem(
'dcl_field_ids[]', (
string) $field_id, $field->getTitle());
132 $conf->setConfirm($this->
lng->txt(
'delete'),
'deleteFields');
133 $conf->setCancel($this->
lng->txt(
'cancel'),
'listFields');
134 $this->tpl->setContent($conf->getHTML());
142 $table_id = $this->
http->wrapper()->query()->retrieve(
'table_id', $this->
refinery->kindlyTo()->int());
145 $fields = $table->getFields();
147 $order = $this->
http->wrapper()->post()->retrieve(
153 foreach (array_keys($order) as $field_id) {
154 $order[$field_id] = $val;
159 if ($this->
http->wrapper()->post()->has(
"exportable")) {
160 $exportable = $this->
http->wrapper()->post()->retrieve(
162 $this->
refinery->kindlyTo()->dictOf(
163 $this->
refinery->kindlyTo()->string()
168 foreach ($fields as $field) {
169 $field->setExportable(array_key_exists($field->getId(), $exportable) && $exportable[$field->getId()] ===
"on");
170 $field->setOrder($order[$field->getId()]);
174 $table->reloadFields();
175 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"dcl_table_settings_saved"));
185 $add_new = $this->ui_factory->button()->primary(
186 $this->
lng->txt(
"dcl_add_new_field"),
187 $this->
ctrl->getLinkTargetByClass(ilDclFieldEditGUI::class,
'create')
189 $this->
toolbar->addStickyItem($add_new);
192 $switcher->addTableSwitcherToToolbar(
193 $this->parent_obj->getDataCollectionObject()->getTables(),
200 $this->tpl->setContent($list->getHTML());
212 return $this->parent_obj->getDataCollectionObject();
ILIAS HTTP Services $http
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getFieldCache(int $field_id=0)
ilDclTableListGUI: ilDclFieldListGUI, ilDclFieldEditGUI, ilDclTableViewGUI, ilDclTableEditGUI ...
ilGlobalTemplateInterface $tpl
getDataCollectionObject()
static http()
Fetches the global http state from ILIAS.
deleteFields()
Delete multiple fields.
static getTableCache(?int $table_id=null)
ILIAS UI Factory $ui_factory
executeCommand()
execute command
ilDclTableListGUI $parent_obj
static hasAccessToEditTable(int $ref_id, int $table_id)
ILIAS Refinery Factory $refinery
ILIAS UI Renderer $renderer
__construct(ilDclTableListGUI $a_parent_obj)
Constructor.