47 $ilTabs = $DIC[
'ilTabs'];
48 $ilToolbar = $DIC[
'ilToolbar'];
50 $this->parent_obj = $a_parent_obj;
51 $this->obj_id = $a_parent_obj->obj_id;
55 $this->tabs = $ilTabs;
56 $this->toolbar = $ilToolbar;
60 $this->ctrl->redirectByClass(
'ildclrecordlistgui',
'listRecords');
71 $cmd = $this->ctrl->getCmd(
'listTables');
73 $next_class = $this->ctrl->getNextClass($this);
78 $tableHelper =
new ilDclTableHelper((
int) $this->obj_id, (
int)
$_GET[
'ref_id'], $DIC->rbac()->review(), $DIC->user(), $DIC->database());
82 if (count($role_titles) > 0) {
83 ilUtil::sendInfo($DIC->language()->txt(
'dcl_rbac_roles_without_read_access_on_any_standard_view') .
" " . implode(
", ", $role_titles));
86 switch ($next_class) {
87 case 'ildcltableeditgui':
88 $this->tabs->clearTargets();
89 if ($cmd !=
'create') {
92 $this->tabs->setBackTarget($this->lng->txt(
'back'), $this->ctrl->getLinkTarget($this,
'listTables'));
95 $this->ctrl->forwardCommand($ilDclTableEditGUI);
98 case 'ildclfieldlistgui':
99 $this->tabs->clearTargets();
102 $this->ctrl->forwardCommand($ilDclFieldListGUI);
105 case "ildclfieldeditgui":
106 $this->tabs->clearTargets();
109 $this->ctrl->forwardCommand($ilDclFieldEditGUI);
112 case 'ildcltableviewgui':
113 $this->tabs->clearTargets();
116 $this->ctrl->forwardCommand($ilDclTableViewGUI);
132 $add_new->setPrimary(
true);
133 $add_new->setCaption(
"dcl_add_new_table");
134 $add_new->setUrl($this->ctrl->getLinkTargetByClass(
'ilDclTableEditGUI',
'create'));
135 $this->toolbar->addStickyItem($add_new);
138 $this->tpl->setContent($table_gui->getHTML());
144 $this->tabs->setBackTarget($this->lng->txt(
'dcl_tables'), $this->ctrl->getLinkTarget($this,
'listTables'));
145 $this->tabs->addTab(
'settings', $this->lng->txt(
'settings'), $this->ctrl->getLinkTargetByClass(
'ilDclTableEditGUI',
'edit'));
146 $this->tabs->addTab(
'fields', $this->lng->txt(
'dcl_list_fields'), $this->ctrl->getLinkTargetByClass(
'ilDclFieldListGUI',
'listFields'));
147 $this->tabs->addTab(
'tableviews', $this->lng->txt(
'dcl_tableviews'), $this->ctrl->getLinkTargetByClass(
'ilDclTableViewGUI'));
148 $this->tabs->setTabActive($active);
157 $comments =
$_POST[
'comments'];
158 $visible =
$_POST[
'visible'];
159 $orders =
$_POST[
'order'];
162 foreach (array_keys($orders) as $table_id) {
164 $table->setOrder($order);
165 $table->setPublicCommentsEnabled(isset($comments[$table_id]));
166 $table->setIsVisible(isset($visible[$table_id]));
170 $this->ctrl->redirect($this);
180 $tables = isset(
$_POST[
'dcl_table_ids']) ?
$_POST[
'dcl_table_ids'] : array();
183 $this->tabs->clearSubTabs();
185 $conf->setFormAction($this->ctrl->getFormAction($this));
186 $conf->setHeaderText($this->lng->txt(
'dcl_tables_confirm_delete'));
188 foreach ($tables as $table_id) {
191 $conf->setConfirm($this->lng->txt(
'delete'),
'deleteTables');
192 $conf->setCancel($this->lng->txt(
'cancel'),
'listTables');
193 $this->tpl->setContent($conf->getHTML());
202 $tables = isset(
$_POST[
'dcl_table_ids']) ?
$_POST[
'dcl_table_ids'] : array();
203 foreach ($tables as $table_id) {
206 ilUtil::sendSuccess($this->lng->txt(
'dcl_msg_tables_deleted'),
true);
207 $this->ctrl->redirect($this,
'listTables');
220 $this->ctrl->redirect($this,
'listTables');
241 return $this->parent_obj->getDataCollectionObject();
getDataCollectionObject()
static getTableCache($table_id=0)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
Class ilObjDataCollectionGUI.
__construct(ilObjDataCollectionGUI $a_parent_obj)
ilDclTableListGUI constructor.
executeCommand()
execute command
getRoleTitlesWithoutReadRightOnAnyStandardView()
static hasWriteAccess($ref, $user_id=0)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
Class ilDclTableListTableGUI.
checkTablesLeft($delete_count)
redirects if there are no tableviews left after deletion of {$delete_count} tableviews ...
confirmDeleteTables()
Confirm deletion of multiple fields.
Class ilDclBaseFieldModel.
Confirmation screen class.