19 declare(strict_types=1);
49 $locator = $DIC[
'ilLocator'];
50 $this->parent_obj = $a_parent_obj;
51 $this->
ctrl = $DIC->ctrl();
52 $this->
lng = $DIC->language();
53 $this->tpl = $DIC->ui()->mainTemplate();
54 $this->
tabs = $DIC->tabs();
55 $this->
toolbar = $DIC->toolbar();
56 $this->
http = $DIC->http();
58 $this->ui_factory = $DIC->ui()->factory();
59 $this->
renderer = $DIC->ui()->renderer();
61 $DIC->help()->setScreenId(
'dcl_views');
64 $table_id = $this->
http->wrapper()->query()->retrieve(
'table_id', $this->
refinery->kindlyTo()->int());
69 $this->
ctrl->saveParameterByClass(
'ilDclTableEditGUI',
'table_id');
70 $locator->addItem($this->table->getTitle(), $this->
ctrl->getLinkTargetByClass(
'ilDclTableEditGUI',
'edit'));
71 $this->tpl->setLocator();
74 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
75 $this->
ctrl->redirectByClass(ilDclRecordListGUI::class,
'listRecords');
81 $this->
ctrl->saveParameter($this,
'table_id');
82 $cmd = $this->
ctrl->getCmd(
"show");
83 $next_class = $this->
ctrl->getNextClass($this);
85 switch ($next_class) {
86 case strtolower(ilDclTableViewEditGUI::class):
87 if ($this->
http->wrapper()->query()->has(
'tableview_id')) {
88 $tableview_id = $this->
http->wrapper()->query()->retrieve(
101 $this->
ctrl->saveParameter($edit_gui,
'tableview_id');
102 $this->
ctrl->forwardCommand($edit_gui);
118 $this->parent_obj->getDataCollectionObject()->getRefId(),
119 $this->table->getId()
125 $add_new = $this->ui_factory->button()->primary(
126 $this->
lng->txt(
"dcl_add_new_view"),
127 $this->
ctrl->getLinkTargetByClass(ilDclTableViewEditGUI::class,
'add')
129 $this->
toolbar->addStickyItem($add_new);
131 $this->
toolbar->addSeparator();
134 $switcher->addTableSwitcherToToolbar(
135 $this->parent_obj->getDataCollectionObject()->getTables(),
140 $this->tpl->setContent(
142 $this->ui_factory->panel()->listing()->standard(
143 sprintf($this->
lng->txt(
'dcl_tableviews_of_X'), $this->table->getTitle()),
144 [$this->ui_factory->item()->group(
'', $this->
getItems())]
153 foreach ($this->table->getTableViews() as $tableview) {
155 $this->
ctrl->setParameterByClass(ilDclTableViewEditGUI::class,
'tableview_id', $tableview->getId());
156 $item = $this->ui_factory->item()->standard(
157 $this->ui_factory->link()->standard(
158 $tableview->getTitle(),
159 $this->
ctrl->getLinkTargetByClass(ilDclTableViewEditGUI::class,
'show')
162 ->withDescription($tableview->getDescription())
163 ->withActions($this->ui_factory->dropdown()->standard($this->
getActions($tableview)));
175 $this->
ctrl->setParameterByClass(ilDclTableViewEditGUI::class,
'tableview_id', $tableview->
getId());
178 $actions[] = $this->ui_factory->button()->shy(
179 $this->
lng->txt(
'edit'),
180 $this->
ctrl->getLinkTargetByClass(ilDclTableViewEditGUI::class,
'editGeneralSettings')
182 $actions[] = $this->ui_factory->button()->shy(
183 $this->
lng->txt(
'copy'),
184 $this->
ctrl->getLinkTargetByClass(ilDclTableViewEditGUI::class,
'copy')
186 $actions[] = $this->ui_factory->button()->shy(
187 $this->
lng->txt(
'delete'),
188 $this->
ctrl->getLinkTargetByClass(ilDclTableViewEditGUI::class,
'confirmDelete')
199 $has_dcl_tableview_ids = $this->
http->wrapper()->post()->has(
'dcl_tableview_ids');
200 if (!$has_dcl_tableview_ids) {
201 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'dcl_delete_views_no_selection'),
true);
202 $this->
ctrl->redirect($this,
'show');
205 $tableviews = $this->
http->wrapper()->post()->retrieve(
211 $this->
tabs->clearSubTabs();
213 $conf->setFormAction($this->
ctrl->getFormAction($this));
214 $conf->setHeaderText($this->
lng->txt(
'dcl_tableviews_confirm_delete'));
216 foreach ($tableviews as $tableview_id) {
217 $conf->addItem(
'dcl_tableview_ids[]', (
string) $tableview_id, ilDclTableView::find($tableview_id)->
getTitle());
219 $conf->setConfirm($this->
lng->txt(
'delete'),
'deleteTableviews');
220 $conf->setCancel($this->
lng->txt(
'cancel'),
'show');
221 $this->tpl->setContent($conf->getHTML());
226 $has_dcl_tableview_ids = $this->
http->wrapper()->post()->has(
'dcl_tableview_ids');
227 if ($has_dcl_tableview_ids) {
228 $tableviews = $this->
http->wrapper()->post()->retrieve(
232 foreach ($tableviews as $tableview_id) {
233 ilDclTableView::find($tableview_id)->delete();
237 $this->table->sortTableViews();
238 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableviews_deleted'),
true);
239 $this->
ctrl->redirect($this,
'show');
248 if ($delete_count >= count($this->table->getTableViews())) {
249 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'dcl_msg_tableviews_delete_all'),
true);
250 $this->
ctrl->redirect($this,
'show');
259 $orders = $this->
http->wrapper()->post()->retrieve(
265 foreach (array_keys($orders) as $tableview_id) {
266 $tableviews[] = ilDclTableView::find($tableview_id);
268 $this->table->sortTableViews($tableviews);
269 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableviews_order_updated'));
270 $this->
ctrl->redirect($this);
ilDclTableListGUI $parent_obj
ilGlobalTemplateInterface $tpl
ilDclTableViewEditGUI: ilDclDetailedViewDefinitionGUI ilDclTableViewEditGUI: ilDclCreateViewDefiniti...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static findOrGetInstance($primary_key, array $add_constructor_args=[])
saveTableViewOrder()
invoked by ilDclTableViewTableGUI
ilDclTableViewGUI: ilDclTableViewEditGUI
__construct(ilDclTableListGUI $a_parent_obj, int $table_id=0)
Constructor.
ilDclTableListGUI: ilDclFieldListGUI, ilDclFieldEditGUI, ilDclTableViewGUI, ilDclTableEditGUI ...
confirmDeleteTableviews()
Confirm deletion of multiple fields.
checkViewsLeft(int $delete_count)
redirects if there are no tableviews left after deletion of {$delete_count} tableviews ...
static http()
Fetches the global http state from ILIAS.
ILIAS Refinery Factory $refinery
static getTableCache(?int $table_id=null)
getActions(ilDclTableView $tableview)
ILIAS UI Factory $ui_factory
static hasAccessToEditTable(int $ref_id, int $table_id)
ILIAS UI Renderer $renderer
ILIAS HTTP Services $http