40 $locator = $DIC[
'ilLocator'];
42 $this->
ctrl = $DIC->ctrl();
43 $this->
lng = $DIC->language();
44 $this->tpl = $DIC->ui()->mainTemplate();
45 $this->
toolbar = $DIC->toolbar();
46 $this->parent_object = $a_parent_obj;
47 $this->obj_id = $a_parent_obj->
getObjId();
48 $this->
http = $DIC->http();
52 if ($this->
http->wrapper()->query()->has(
"table_id")) {
53 $table_id = $this->
http->wrapper()->query()->retrieve(
'table_id', $this->
refinery->kindlyTo()->int());
59 $this->
ctrl->saveParameter($this,
'table_id');
60 if ($this->table->getTitle()) {
61 $locator->addItem($this->table->getTitle(), $this->
ctrl->getLinkTarget($this,
'edit'));
63 $this->tpl->setLocator();
66 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
67 $this->
ctrl->redirectByClass(
'ildclrecordlistgui',
'listRecords');
73 $cmd = $this->
ctrl->getCmd();
77 $this->
save(
"update");
89 $this->tpl->setContent($this->
form->getHTML());
92 public function edit(): void
94 if (!$this->table_id) {
95 $this->
ctrl->redirectByClass(
"ildclfieldeditgui",
"listFields");
103 $this->tpl->setContent($this->
form->getHTML());
109 'title' => $this->table->getTitle(),
110 'add_perm' => (
int) $this->table->getAddPerm(),
111 'edit_perm' => (
int) $this->table->getEditPerm(),
112 'edit_perm_mode' => $this->table->getEditByOwner() ?
'own' :
'all',
113 'delete_perm' => (
int) $this->table->getDeletePerm(),
114 'delete_perm_mode' => $this->table->getDeleteByOwner() ?
'own' :
'all',
115 'export_enabled' => $this->table->getExportEnabled(),
116 'import_enabled' => $this->table->getImportEnabled(),
117 'limited' => $this->table->getLimited(),
118 'limit_start' => substr($this->table->getLimitStart(), 0, 10) .
" " . substr(
119 $this->table->getLimitStart(),
122 'limit_end' => substr($this->table->getLimitEnd(), 0, 10) .
" " . substr($this->table->getLimitEnd(), -8),
123 'default_sort_field' => $this->table->getDefaultSortField(),
124 'default_sort_field_order' => $this->table->getDefaultSortFieldOrder(),
125 'description' => $this->table->getDescription(),
126 'view_own_records_perm' => $this->table->getViewOwnRecordsPerm(),
127 'save_confirmation' => $this->table->getSaveConfirmation(),
129 if (!$this->table->getLimitStart()) {
130 $values[
'limit_start'] = null;
132 if (!$this->table->getLimitEnd()) {
133 $values[
'limit_end'] = null;
135 $this->
form->setValuesByArray($values);
144 'edit_perm_mode' =>
'own',
145 'delete_perm_mode' =>
'own',
147 'edit_by_owner' => 1,
148 'export_enabled' => 0,
149 'import_enabled' => 0,
151 'limit_start' => null,
154 $this->
form->setValuesByArray($values);
159 $this->
ctrl->redirectByClass(
"ilDclTableListGUI",
"listTables");
165 public function initForm(
string $a_mode =
"create"): void
170 $item->setRequired(
true);
171 $this->
form->addItem($item);
174 if ($a_mode !=
'create') {
177 $item =
new ilSelectInputGUI($this->
lng->txt(
'dcl_default_sort_field'),
'default_sort_field');
178 $item->setInfo($this->
lng->txt(
'dcl_default_sort_field_desc'));
180 return !is_null($field->getRecordQuerySortObject());
182 $options = array(0 => $this->
lng->txt(
'dcl_please_select'));
183 foreach ($fields as $field) {
184 if ($field->getId() ==
'comments') {
187 $options[$field->getId()] = $field->getTitle();
189 $item->setOptions($options);
190 $this->
form->addItem($item);
192 $item =
new ilSelectInputGUI($this->
lng->txt(
'dcl_default_sort_field_order'),
'default_sort_field_order');
193 $options = array(
'asc' => $this->
lng->txt(
'dcl_asc'),
'desc' => $this->
lng->txt(
'dcl_desc'));
194 $item->setOptions($options);
195 $this->
form->addItem($item);
200 $item->setInfo($this->
lng->txt(
'dcl_additional_info_desc'));
201 $item->setRteTagSet(
'mini');
202 $this->
form->addItem($item);
205 $section->setTitle($this->
lng->txt(
'dcl_permissions_form'));
206 $this->
form->addItem($section);
209 $item->setHtml($this->
lng->txt(
'dcl_table_info'));
210 $item->setTitle($this->
lng->txt(
'dcl_table_info_title'));
211 $this->
form->addItem($item);
214 $item->
setInfo($this->
lng->txt(
"dcl_add_perm_desc"));
215 $this->
form->addItem($item);
218 $item->
setInfo($this->
lng->txt(
'dcl_save_confirmation_desc'));
219 $this->
form->addItem($item);
222 $this->
form->addItem($item);
225 $radios->addOption(
new ilRadioOption($this->
lng->txt(
'dcl_all_entries'),
'all'));
226 $radios->addOption(
new ilRadioOption($this->
lng->txt(
'dcl_own_entries'),
'own'));
227 $item->addSubItem($radios);
230 $this->
form->addItem($item);
233 $radios->addOption(
new ilRadioOption($this->
lng->txt(
'dcl_all_entries'),
'all'));
234 $radios->addOption(
new ilRadioOption($this->
lng->txt(
'dcl_own_entries'),
'own'));
235 $item->addSubItem($radios);
237 $item =
new ilCheckboxInputGUI($this->
lng->txt(
'dcl_view_own_records_perm'),
'view_own_records_perm');
238 $this->
form->addItem($item);
241 $item->
setInfo($this->
lng->txt(
'dcl_export_enabled_desc'));
242 $this->
form->addItem($item);
245 $item->
setInfo($this->
lng->txt(
'dcl_import_enabled_desc'));
246 $this->
form->addItem($item);
250 $sitem1->setShowTime(
true);
253 $item->setInfo($this->
lng->txt(
"dcl_limited_desc"));
254 $item->addSubItem($sitem1);
255 $item->addSubItem($sitem2);
256 $this->
form->addItem($item);
258 if ($a_mode ==
"edit") {
259 $this->
form->addCommandButton(
'update', $this->
lng->txt(
'dcl_table_' . $a_mode));
261 $this->
form->addCommandButton(
'save', $this->
lng->txt(
'dcl_table_' . $a_mode));
264 $this->
form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
265 $this->
form->setFormAction($this->
ctrl->getFormAction($this, $a_mode));
266 if ($a_mode ==
"edit") {
267 $this->
form->setTitle($this->
lng->txt(
'dcl_edit_table'));
269 $this->
form->setTitle($this->
lng->txt(
'dcl_new_table'));
275 $table_id = $this->
http->wrapper()->post()->retrieve(
'table_id', $this->
refinery->kindlyTo()->int());
276 $this->
ctrl->setParameter($this,
"table_id", $table_id);
277 $this->
ctrl->redirect($this,
"edit");
280 public function save(
string $a_mode =
"create"): void
283 $ilTabs = $DIC[
'ilTabs'];
291 $ilTabs->activateTab(
"id_fields");
295 if ($a_mode !=
"update") {
297 } elseif ($this->table_id) {
300 $this->
ctrl->redirectByClass(
"ildclfieldeditgui",
"listFields");
303 $this->table->setTitle($this->
form->getInput(
"title"));
304 $this->table->setObjId($this->obj_id);
305 $this->table->setSaveConfirmation((
bool) $this->
form->getInput(
'save_confirmation'));
306 $this->table->setAddPerm((
bool) $this->
form->getInput(
"add_perm"));
307 $this->table->setEditPerm((
bool) $this->
form->getInput(
"edit_perm"));
308 if ($this->table->getEditPerm()) {
309 $edit_by_owner = ($this->
form->getInput(
'edit_perm_mode') ==
'own');
310 $this->table->setEditByOwner($edit_by_owner);
312 $this->table->setDeletePerm((
bool) $this->
form->getInput(
"delete_perm"));
313 if ($this->table->getDeletePerm()) {
314 $delete_by_owner = ($this->
form->getInput(
'delete_perm_mode') ==
'own');
315 $this->table->setDeleteByOwner($delete_by_owner);
317 $this->table->setViewOwnRecordsPerm($this->
form->getInput(
'view_own_records_perm'));
318 $this->table->setExportEnabled($this->
form->getInput(
"export_enabled"));
319 $this->table->setImportEnabled($this->
form->getInput(
"import_enabled"));
320 $this->table->setDefaultSortField($this->
form->getInput(
"default_sort_field"));
321 $this->table->setDefaultSortFieldOrder($this->
form->getInput(
"default_sort_field_order"));
322 $this->table->setLimited($this->
form->getInput(
"limited"));
323 $this->table->setDescription($this->
form->getInput(
'description'));
324 $limit_start = $this->
form->getInput(
"limit_start");
325 $limit_end = $this->
form->getInput(
"limit_end");
326 $this->table->setLimitStart($limit_start);
327 $this->table->setLimitEnd($limit_end);
328 if ($a_mode ==
"update") {
329 $this->table->doUpdate();
330 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"dcl_msg_table_edited"),
true);
331 $this->
ctrl->redirectByClass(
"ildcltableeditgui",
"edit");
333 $this->table->doCreate();
334 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"dcl_msg_table_created"),
true);
335 $this->
ctrl->setParameterByClass(
"ildclfieldlistgui",
"table_id", $this->table->getId());
336 $this->
ctrl->redirectByClass(
"ildclfieldlistgui",
"listFields");
339 $this->
form->setValuesByPost();
340 $this->tpl->setContent($this->
form->getHTML());
350 $return = $this->
form->checkInput();
353 if ($a_mode ==
'create') {
354 if ($title = $this->
form->getInput(
'title')) {
356 $inputObj = $this->
form->getItemByPostVar(
'title');
357 $inputObj->setAlert($this->
lng->txt(
"dcl_table_title_unique"));
364 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"form_input_not_valid"));
372 $this->tpl->setContent(
"Access denied.");
378 $conf->setFormAction($this->
ctrl->getFormAction($this));
379 $conf->setHeaderText($this->
lng->txt(
'dcl_confirm_delete_table'));
381 $conf->addItem(
'table', $this->table->getId(), $this->table->getTitle());
383 $conf->setConfirm($this->
lng->txt(
'delete'),
'delete');
384 $conf->setCancel($this->
lng->txt(
'cancel'),
'cancelDelete');
386 $this->tpl->setContent($conf->getHTML());
391 $this->
ctrl->redirectByClass(
"ilDclTableListGUI",
"listTables");
394 public function delete():
void 396 if (count($this->table->getCollectionObject()->getTables()) < 2) {
397 $this->tpl->setOnScreenMessage(
399 $this->
lng->txt(
"dcl_cant_delete_last_table"),
402 $this->table->doDelete(
true);
404 $this->table->doDelete(
false);
406 $this->
ctrl->clearParameterByClass(
"ilobjdatacollectiongui",
"table_id");
407 $this->
ctrl->redirectByClass(
"ildcltablelistgui",
"listtables");
412 $ref_id = $this->parent_object->getDataCollectionObject()->getRefId();
426 $tables = $this->parent_object->getDataCollectionObject()->getTables();
428 foreach ($tables as $table) {
429 $options[$table->getId()] = $table->getTitle();
432 $table_selection->setOptions($options);
433 $table_selection->setValue($this->table->getId());
435 $this->
toolbar->setFormAction($this->
ctrl->getFormActionByClass(
"ilDclTableEditGUI",
"doTableSwitch"));
436 $this->
toolbar->addText($this->
lng->txt(
"dcl_select"));
437 $this->
toolbar->addInputItem($table_selection);
439 $button->setCommand(
"doTableSwitch");
440 $button->setCaption(
'change');
441 $this->
toolbar->addButtonInstance($button);
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...
ilDclTableListGUI $parent_object
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _hasTableByTitle(string $title, int $obj_id)
Checks if a DataCollection has a table with a given title.
ILIAS HTTP Services $http
ILIAS Refinery Factory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
static http()
Fetches the global http state from ILIAS.
static getTableCache(int $table_id=null)
checkInput(string $a_mode)
Custom checks for the form input.
save(string $a_mode="create")
static hasWriteAccess(int $ref, ?int $user_id=0)
__construct(ilDclTableListGUI $a_parent_obj)
Constructor.
form( $class_path, string $cmd)
This class represents a text area property in a property form.
setUseRte(bool $a_usert, string $version='')
static hasAccessToEditTable(int $ref_id, int $table_id)
initForm(string $a_mode="create")
initEditCustomForm
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static checkActionForObjId(string $action, int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...