39 $this->
http = $DIC->http();
41 $this->table_id = $this->
http->wrapper()->query()->retrieve(
'table_id', $this->
refinery->kindlyTo()->int());
42 $locator = $DIC[
'ilLocator'];
43 $this->parent_obj = $a_parent_obj;
44 $this->obj_id = $a_parent_obj->
getObjId();
45 $this->
ctrl = $DIC->ctrl();
46 $this->
lng = $DIC->language();
47 $this->tpl = $DIC->ui()->mainTemplate();
48 $this->
tabs = $DIC->tabs();
49 $this->
toolbar = $DIC->toolbar();
51 $this->
ctrl->saveParameterByClass(
'ilDclTableEditGUI',
'table_id');
54 $this->
ctrl->getLinkTargetByClass(
'ilDclTableEditGUI',
'edit')
56 $this->tpl->setLocator();
59 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
60 $this->
ctrl->redirectByClass(
'ildclrecordlistgui',
'listRecords');
74 $cmd = $this->
ctrl->getCmd(
'listFields');
83 if ($this->
http->wrapper()->post()->has(
'dcl_field_ids')) {
84 $field_ids = $this->
http->wrapper()->post()->retrieve(
89 foreach ($field_ids as $field_id) {
90 $table->deleteField($field_id);
94 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_fields_deleted'),
true);
95 $this->
ctrl->redirect($this,
'listFields');
101 public function confirmDeleteFields():
void 103 $this->
tabs->clearSubTabs();
105 $conf->setFormAction($this->
ctrl->getFormAction($this));
106 $conf->setHeaderText($this->
lng->txt(
'dcl_confirm_delete_fields'));
108 $has_field_ids = $this->
http->wrapper()->post()->has(
'dcl_field_ids');
109 if (!$has_field_ids) {
110 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'dcl_delete_fields_no_selection'),
true);
111 $this->
ctrl->redirect($this,
'listFields');
114 $field_ids = $this->
http->wrapper()->post()->retrieve(
118 foreach ($field_ids as $field_id) {
121 $conf->addItem(
'dcl_field_ids[]', $field_id, $field->getTitle());
124 $conf->setConfirm($this->
lng->txt(
'delete'),
'deleteFields');
125 $conf->setCancel($this->
lng->txt(
'cancel'),
'listFields');
126 $this->tpl->setContent($conf->getHTML());
134 $table_id = $this->
http->wrapper()->query()->retrieve(
'table_id', $this->
refinery->kindlyTo()->int());
137 $fields = $table->getFields();
139 $order = $this->
http->wrapper()->post()->retrieve(
145 foreach (array_keys($order) as $field_id) {
146 $order[$field_id] = $val;
151 if ($this->
http->wrapper()->post()->has(
"exportable")) {
152 $exportable = $this->
http->wrapper()->post()->retrieve(
154 $this->
refinery->kindlyTo()->dictOf(
155 $this->
refinery->kindlyTo()->string()
160 foreach ($fields as $field) {
161 $field->setExportable(array_key_exists($field->getId(), $exportable) && $exportable[$field->getId()] ===
"on");
162 $field->setOrder($order[$field->getId()]);
166 $table->reloadFields();
167 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"dcl_table_settings_saved"));
178 $add_new->setPrimary(
true);
179 $add_new->setCaption(
"dcl_add_new_field");
180 $add_new->setUrl($this->
ctrl->getLinkTargetByClass(
'ildclfieldeditgui',
'create'));
181 $this->
toolbar->addStickyItem($add_new);
183 $this->
toolbar->addSeparator();
186 $tables = $this->parent_obj->getDataCollectionObject()->getTables();
188 foreach ($tables as $table) {
189 $options[$table->getId()] = $table->getTitle();
192 $table_selection->setOptions($options);
193 $table_selection->setValue($this->table_id);
195 $this->
toolbar->setFormAction($this->
ctrl->getFormActionByClass(
"ilDclFieldListGUI",
"doTableSwitch"));
196 $this->
toolbar->addText($this->
lng->txt(
"dcl_select"));
197 $this->
toolbar->addInputItem($table_selection);
198 $this->
toolbar->addFormButton($this->
lng->txt(
'change'),
'doTableSwitch');
202 $this->tpl->setContent($list->getHTML());
210 $table_id = $this->
http->wrapper()->post()->retrieve(
'table_id', $this->
refinery->kindlyTo()->int());
211 $this->
ctrl->setParameterByClass(
"ilObjDataCollectionGUI",
"table_id", $table_id);
212 $this->
ctrl->redirectByClass(
"ilDclFieldListGUI",
"listFields");
224 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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
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...
getDataCollectionObject()
static http()
Fetches the global http state from ILIAS.
static getTableCache(int $table_id=null)
deleteFields()
Delete multiple fields.
executeCommand()
execute command
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilDclTableListGUI $parent_obj
static hasAccessToEditTable(int $ref_id, int $table_id)
ILIAS Refinery Factory $refinery
__construct(ilDclTableListGUI $a_parent_obj)
Constructor.
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...