29 $ilCtrl = $DIC[
'ilCtrl'];
32 $this->
ctrl = $ilCtrl;
36 $this->
ctrl->saveParameterByClass(
'ilDclTableViewGUI',
'tableview_id');
43 $rbacreview = $DIC[
'rbacreview'];
45 $this->
setTitle($this->tableview->getId() ? $this->
lng->txt(
'dcl_view_settings') : $this->
lng->txt(
'dcl_tableview_add'));
49 $item->setValue($this->tableview->getTitle());
50 $item->setRequired(
true);
55 $item->setValue($this->tableview->getDescription());
61 $ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
62 foreach ($rbacreview->getParentRoleIds($ref_id) as $role_array) {
64 $option->setValue($role_array[
'obj_id']);
65 $checkbox_group_input_gui->addOption($option);
68 $checkbox_group_input_gui->setValue($this->tableview->getRoles());
69 $this->
addItem($checkbox_group_input_gui);
72 if ($this->tableview->getId()) {
82 $this->tableview->setTitle($this->
getInput(
'title'));
83 $this->tableview->setDescription($this->
getInput(
'description'));
84 $this->tableview->setRoles((array) $this->
getInput(
'roles'));
85 $this->tableview->update();
87 $this->global_tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableview_updated'),
true);
92 $this->tableview->setTitle($this->
getInput(
'title'));
93 $this->tableview->setDescription($this->
getInput(
'description'));
94 $this->tableview->setRoles((array) $this->
getInput(
'roles'));
95 $this->tableview->setTableId($this->table->getId());
96 $this->tableview->setStepVs(
true);
97 $this->tableview->setStepE(
false);
98 $this->tableview->setStepC(
false);
99 $this->tableview->setStepO(
false);
100 $this->tableview->setStepS(
false);
101 $this->tableview->setOrder($this->table->getNewTableviewOrder());
102 $this->tableview->create();
104 $this->
ctrl->setParameterByClass(
'ilDclTableViewGUI',
'tableview_id', $this->tableview->getId());
106 $this->global_tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableview_created'),
true);
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...
static http()
Fetches the global http state from ILIAS.
static _getTranslation(string $a_role_title)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)