61 $locator = $DIC[
'ilLocator'];
67 $this->parent_object = $a_parent_obj;
68 $this->obj_id = $a_parent_obj->obj_id;
69 $this->table_id =
$_GET[
'table_id'];
72 $this->ctrl->saveParameter($this,
'table_id');
73 if ($this->table->getTitle()) {
74 $locator->addItem($this->table->getTitle(), $this->ctrl->getLinkTarget($this,
'edit'));
76 $this->tpl->setLocator();
80 $this->ctrl->redirectByClass(
'ildclrecordlistgui',
'listRecords');
90 $cmd = $this->ctrl->getCmd();
94 $this->
save(
"update");
112 $this->tpl->setContent($this->form->getHTML());
121 if (!$this->table_id) {
122 $this->ctrl->redirectByClass(
"ildclfieldeditgui",
"listFields");
130 $this->tpl->setContent($this->form->getHTML());
140 'title' => $this->table->getTitle(),
141 'add_perm' => (int) $this->table->getAddPerm(),
142 'edit_perm' => (int) $this->table->getEditPerm(),
143 'edit_perm_mode' => $this->table->getEditByOwner() ?
'own' :
'all',
144 'delete_perm' => (int) $this->table->getDeletePerm(),
145 'delete_perm_mode' => $this->table->getDeleteByOwner() ?
'own' :
'all',
146 'export_enabled' => $this->table->getExportEnabled(),
147 'import_enabled' => $this->table->getImportEnabled(),
148 'limited' => $this->table->getLimited(),
149 'limit_start' => substr($this->table->getLimitStart(), 0, 10) .
" " . substr($this->table->getLimitStart(), -8),
150 'limit_end' => substr($this->table->getLimitEnd(), 0, 10) .
" " . substr($this->table->getLimitEnd(), -8),
151 'default_sort_field' => $this->table->getDefaultSortField(),
152 'default_sort_field_order' => $this->table->getDefaultSortFieldOrder(),
153 'description' => $this->table->getDescription(),
154 'view_own_records_perm' => $this->table->getViewOwnRecordsPerm(),
155 'save_confirmation' => $this->table->getSaveConfirmation(),
157 if (!$this->table->getLimitStart()) {
158 $values[
'limit_start'] = null;
160 if (!$this->table->getLimitEnd()) {
161 $values[
'limit_end'] = null;
163 $this->form->setValuesByArray($values);
176 'edit_perm_mode' =>
'own',
177 'delete_perm_mode' =>
'own',
179 'edit_by_owner' => 1,
180 'export_enabled' => 0,
181 'import_enabled' => 0,
183 'limit_start' => null,
186 $this->form->setValuesByArray($values);
195 $this->ctrl->redirectByClass(
"ilDclTableListGUI",
"listTables");
209 $item->setRequired(
true);
210 $this->form->addItem($item);
213 if ($a_mode !=
'create') {
216 $item =
new ilSelectInputGUI($this->lng->txt(
'dcl_default_sort_field'),
'default_sort_field');
217 $item->setInfo($this->lng->txt(
'dcl_default_sort_field_desc'));
219 return !is_null($field->getRecordQuerySortObject());
221 $options = array(0 => $this->lng->txt(
'dcl_please_select'));
222 foreach ($fields as $field) {
223 if ($field->getId() ==
'comments') {
226 $options[$field->getId()] = $field->getTitle();
228 $item->setOptions($options);
229 $this->form->addItem($item);
231 $item =
new ilSelectInputGUI($this->lng->txt(
'dcl_default_sort_field_order'),
'default_sort_field_order');
232 $options = array(
'asc' => $this->lng->txt(
'dcl_asc'),
'desc' => $this->lng->txt(
'dcl_desc'));
233 $item->setOptions($options);
234 $this->form->addItem($item);
239 $item->setInfo($this->lng->txt(
'dcl_additional_info_desc'));
241 $item->setRteTagSet(
'mini');
242 $this->form->addItem($item);
245 $section->setTitle($this->lng->txt(
'dcl_permissions_form'));
249 $item->setHtml($this->lng->txt(
'dcl_table_info'));
250 $item->setTitle($this->lng->txt(
'dcl_table_info_title'));
251 $this->form->addItem($item);
254 $item->
setInfo($this->lng->txt(
"dcl_add_perm_desc"));
255 $this->form->addItem($item);
257 $item =
new ilCheckboxInputGUI($this->lng->txt(
'dcl_save_confirmation'),
'save_confirmation');
258 $item->
setInfo($this->lng->txt(
'dcl_save_confirmation_desc'));
259 $this->form->addItem($item);
263 $this->form->addItem($item);
266 $radios->addOption(
new ilRadioOption($this->lng->txt(
'dcl_all_entries'),
'all'));
267 $radios->addOption(
new ilRadioOption($this->lng->txt(
'dcl_own_entries'),
'own'));
268 $item->addSubItem($radios);
272 $this->form->addItem($item);
275 $radios->addOption(
new ilRadioOption($this->lng->txt(
'dcl_all_entries'),
'all'));
276 $radios->addOption(
new ilRadioOption($this->lng->txt(
'dcl_own_entries'),
'own'));
277 $item->addSubItem($radios);
279 $item =
new ilCheckboxInputGUI($this->lng->txt(
'dcl_view_own_records_perm'),
'view_own_records_perm');
281 $this->form->addItem($item);
283 $item =
new ilCheckboxInputGUI($this->lng->txt(
'dcl_export_enabled'),
'export_enabled');
284 $item->
setInfo($this->lng->txt(
'dcl_export_enabled_desc'));
285 $this->form->addItem($item);
287 $item =
new ilCheckboxInputGUI($this->lng->txt(
'dcl_import_enabled'),
'import_enabled');
288 $item->
setInfo($this->lng->txt(
'dcl_import_enabled_desc'));
289 $this->form->addItem($item);
293 $sitem1->setShowTime(
true);
296 $item->setInfo($this->lng->txt(
"dcl_limited_desc"));
297 $item->addSubItem($sitem1);
298 $item->addSubItem($sitem2);
299 $this->form->addItem($item);
301 if ($a_mode ==
"edit") {
302 $this->form->addCommandButton(
'update', $this->lng->txt(
'dcl_table_' . $a_mode));
304 $this->form->addCommandButton(
'save', $this->lng->txt(
'dcl_table_' . $a_mode));
307 $this->form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
308 $this->form->setFormAction($this->ctrl->getFormAction($this, $a_mode));
309 if ($a_mode ==
"edit") {
310 $this->form->setTitle($this->lng->txt(
'dcl_edit_table'));
312 $this->form->setTitle($this->lng->txt(
'dcl_new_table'));
322 $this->ctrl->setParameter($this,
"table_id",
$_POST[
'table_id']);
323 $this->ctrl->redirect($this,
"edit");
332 public function save($a_mode =
"create")
335 $ilTabs = $DIC[
'ilTabs'];
343 $ilTabs->activateTab(
"id_fields");
347 if ($a_mode !=
"update") {
349 } elseif ($this->table_id) {
352 $this->ctrl->redirectByClass(
"ildclfieldeditgui",
"listFields");
355 $this->table->setTitle($this->form->getInput(
"title"));
356 $this->table->setObjId($this->obj_id);
357 $this->table->setSaveConfirmation((
bool) $this->form->getInput(
'save_confirmation'));
358 $this->table->setAddPerm((
bool) $this->form->getInput(
"add_perm"));
359 $this->table->setEditPerm((
bool) $this->form->getInput(
"edit_perm"));
360 if ($this->table->getEditPerm()) {
361 $edit_by_owner = ($this->form->getInput(
'edit_perm_mode') ==
'own');
362 $this->table->setEditByOwner($edit_by_owner);
364 $this->table->setDeletePerm((
bool) $this->form->getInput(
"delete_perm"));
365 if ($this->table->getDeletePerm()) {
366 $delete_by_owner = ($this->form->getInput(
'delete_perm_mode') ==
'own');
367 $this->table->setDeleteByOwner($delete_by_owner);
369 $this->table->setViewOwnRecordsPerm($this->form->getInput(
'view_own_records_perm'));
370 $this->table->setExportEnabled($this->form->getInput(
"export_enabled"));
371 $this->table->setImportEnabled($this->form->getInput(
"import_enabled"));
372 $this->table->setDefaultSortField($this->form->getInput(
"default_sort_field"));
373 $this->table->setDefaultSortFieldOrder($this->form->getInput(
"default_sort_field_order"));
374 $this->table->setLimited($this->form->getInput(
"limited"));
375 $this->table->setDescription($this->form->getInput(
'description'));
376 $limit_start = $this->form->getInput(
"limit_start");
377 $limit_end = $this->form->getInput(
"limit_end");
378 $this->table->setLimitStart($limit_start);
379 $this->table->setLimitEnd($limit_end);
380 if ($a_mode ==
"update") {
381 $this->table->doUpdate();
382 ilUtil::sendSuccess($this->lng->txt(
"dcl_msg_table_edited"),
true);
383 $this->ctrl->redirectByClass(
"ildcltableeditgui",
"edit");
385 $this->table->doCreate();
386 ilUtil::sendSuccess($this->lng->txt(
"dcl_msg_table_created"),
true);
387 $this->ctrl->setParameterByClass(
"ildclfieldlistgui",
"table_id", $this->table->getId());
388 $this->ctrl->redirectByClass(
"ildclfieldlistgui",
"listFields");
391 $this->form->setValuesByPost();
392 $this->tpl->setContent($this->form->getHTML());
406 $return = $this->form->checkInput();
409 if ($a_mode ==
'create') {
410 if ($title = $this->form->getInput(
'title')) {
412 $inputObj = $this->form->getItemByPostVar(
'title');
413 $inputObj->setAlert($this->lng->txt(
"dcl_table_title_unique"));
432 $this->tpl->setContent(
"Access denied.");
442 $conf->setFormAction($this->ctrl->getFormAction($this));
443 $conf->setHeaderText($this->lng->txt(
'dcl_confirm_delete_table'));
445 $conf->addItem(
'table', (
int) $this->table->getId(), $this->table->getTitle());
447 $conf->setConfirm($this->lng->txt(
'delete'),
'delete');
448 $conf->setCancel($this->lng->txt(
'cancel'),
'cancelDelete');
450 $this->tpl->setContent($conf->getHTML());
459 $this->ctrl->redirectByClass(
"ilDclTableListGUI",
"listTables");
466 public function delete()
468 if (count($this->table->getCollectionObject()->getTables()) < 2) {
470 $this->table->doDelete(
true);
472 $this->table->doDelete(
false);
475 $this->ctrl->redirectByClass(
"ildcltablelistgui",
"listtables");
484 $ref_id = $this->parent_object->getDataCollectionObject()->getRefId();
498 $tables = $this->parent_object->getDataCollectionObject()->getTables();
500 foreach ($tables as
$table) {
501 $options[$table->getId()] = $table->getTitle();
504 $table_selection->setOptions($options);
505 $table_selection->setValue($this->table->getId());
507 $this->toolbar->setFormAction($this->ctrl->getFormActionByClass(
"ilDclTableEditGUI",
"doTableSwitch"));
508 $this->toolbar->addText($this->lng->txt(
"dcl_select"));
509 $this->toolbar->addInputItem($table_selection);
511 $button->setCommand(
"doTableSwitch");
512 $button->setCaption(
'change');
513 $this->toolbar->addButtonInstance($button);
initForm($a_mode="create")
initEditCustomForm
This class represents an option in a radio group.
Class ilDclBaseFieldModel.
confirmDelete()
confirmDelete
create()
create table add form
setUseRte($a_usert, $version='')
Set Use Rich Text Editing.
getStandardValues()
getStandardValues
checkInput($a_mode)
Custom checks for the form input.
static hasAccessToEditTable($ref_id, $table_id)
static getTableCache($table_id=0)
cancelDelete()
cancelDelete
executeCommand()
execute command
save($a_mode="create")
save
static hasWriteAccess($ref, $user_id=0)
static _hasTableByTitle($title, $obj_id)
Checks if a DataCollection has a table with a given title.
__construct(ilDclTableListGUI $a_parent_obj)
Constructor.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
getValues()
getFieldValues
This class represents a text area property in a property form.
edit()
create field edit form
static checkActionForObjId($action, $obj_id)
Class ilDclBaseFieldModel.
Confirmation screen class.