ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclFieldListGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected \ILIAS\UI\Factory $ui_factory;
24  protected \ILIAS\UI\Renderer $renderer;
25  protected ilCtrl $ctrl;
26  protected ilLanguage $lng;
29  protected ilTabsGUI $tabs;
32  protected int $table_id;
34  protected int $obj_id;
35 
39  public function __construct(ilDclTableListGUI $a_parent_obj)
40  {
41  global $DIC;
42 
43  $this->http = $DIC->http();
44  $this->refinery = $DIC->refinery();
45  $this->table_id = $this->http->wrapper()->query()->retrieve('table_id', $this->refinery->kindlyTo()->int());
46  $locator = $DIC['ilLocator'];
47  $this->parent_obj = $a_parent_obj;
48  $this->obj_id = $a_parent_obj->getObjId();
49  $this->ctrl = $DIC->ctrl();
50  $this->lng = $DIC->language();
51  $this->tpl = $DIC->ui()->mainTemplate();
52  $this->tabs = $DIC->tabs();
53  $this->toolbar = $DIC->toolbar();
54  $this->ui_factory = $DIC->ui()->factory();
55  $this->renderer = $DIC->ui()->renderer();
56 
57  $DIC->help()->setScreenId('dcl_fields');
58 
59  $this->ctrl->saveParameterByClass(ilDclTableEditGUI::class, 'table_id');
60  $locator->addItem(
61  ilDclCache::getTableCache($this->table_id)->getTitle(),
62  $this->ctrl->getLinkTargetByClass(ilDclTableEditGUI::class, 'edit')
63  );
64  $this->tpl->setLocator();
65 
66  if (!$this->checkAccess()) {
67  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('permission_denied'), true);
68  $this->ctrl->redirectByClass(ilDclRecordListGUI::class, 'listRecords');
69  }
70  }
71 
72  public function getTableId(): int
73  {
74  return $this->table_id;
75  }
76 
80  public function executeCommand(): void
81  {
82  $cmd = $this->ctrl->getCmd('listFields');
83  $this->$cmd();
84  }
85 
89  public function deleteFields(): void
90  {
91  if ($this->http->wrapper()->post()->has('dcl_field_ids')) {
92  $field_ids = $this->http->wrapper()->post()->retrieve(
93  'dcl_field_ids',
94  $this->refinery->kindlyTo()->listOf($this->refinery->kindlyTo()->int())
95  );
96  $table = ilDclCache::getTableCache($this->table_id);
97  foreach ($field_ids as $field_id) {
98  $table->deleteField($field_id);
99  }
100  }
101 
102  $this->tpl->setOnScreenMessage('success', $this->lng->txt('dcl_msg_fields_deleted'), true);
103  $this->ctrl->redirect($this, 'listFields');
104  }
105 
109  public function confirmDeleteFields(): void
110  {
111  $this->tabs->clearSubTabs();
112  $conf = new ilConfirmationGUI();
113  $conf->setFormAction($this->ctrl->getFormAction($this));
114  $conf->setHeaderText($this->lng->txt('dcl_confirm_delete_fields'));
115 
116  $has_field_ids = $this->http->wrapper()->post()->has('dcl_field_ids');
117  if (!$has_field_ids) {
118  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('dcl_delete_fields_no_selection'), true);
119  $this->ctrl->redirect($this, 'listFields');
120  }
121 
122  $field_ids = $this->http->wrapper()->post()->retrieve(
123  'dcl_field_ids',
124  $this->refinery->kindlyTo()->listOf($this->refinery->kindlyTo()->int())
125  );
126  foreach ($field_ids as $field_id) {
128  $field = ilDclCache::getFieldCache($field_id);
129  $conf->addItem('dcl_field_ids[]', (string) $field_id, $field->getTitle());
130  }
131 
132  $conf->setConfirm($this->lng->txt('delete'), 'deleteFields');
133  $conf->setCancel($this->lng->txt('cancel'), 'listFields');
134  $this->tpl->setContent($conf->getHTML());
135  }
136 
137  /*
138  * save
139  */
140  public function save(): void
141  {
142  $table_id = $this->http->wrapper()->query()->retrieve('table_id', $this->refinery->kindlyTo()->int());
143 
144  $table = ilDclCache::getTableCache($table_id);
145  $fields = $table->getFields();
146 
147  $order = $this->http->wrapper()->post()->retrieve(
148  'order',
149  $this->refinery->kindlyTo()->dictOf($this->refinery->kindlyTo()->string())
150  );
151  asort($order);
152  $val = 10;
153  foreach (array_keys($order) as $field_id) {
154  $order[$field_id] = $val;
155  $val += 10;
156  }
157 
158  $exportable = [];
159  if ($this->http->wrapper()->post()->has("exportable")) {
160  $exportable = $this->http->wrapper()->post()->retrieve(
161  "exportable",
162  $this->refinery->kindlyTo()->dictOf(
163  $this->refinery->kindlyTo()->string()
164  )
165  );
166  }
167 
168  foreach ($fields as $field) {
169  $field->setExportable(array_key_exists($field->getId(), $exportable) && $exportable[$field->getId()] === "on");
170  $field->setOrder($order[$field->getId()]);
171  $field->doUpdate();
172  }
173 
174  $table->reloadFields();
175  $this->tpl->setOnScreenMessage('success', $this->lng->txt("dcl_table_settings_saved"));
176  $this->listFields();
177  }
178 
182  public function listFields(): void
183  {
184  //add button
185  $add_new = $this->ui_factory->button()->primary(
186  $this->lng->txt("dcl_add_new_field"),
187  $this->ctrl->getLinkTargetByClass(ilDclFieldEditGUI::class, 'create')
188  );
189  $this->toolbar->addStickyItem($add_new);
190 
191  $switcher = new ilDclSwitcher($this->toolbar, $this->ui_factory, $this->ctrl, $this->lng);
192  $switcher->addTableSwitcherToToolbar(
193  $this->parent_obj->getDataCollectionObject()->getTables(),
194  self::class,
195  'listFields'
196  );
197 
198  //table gui
199  $list = new ilDclFieldListTableGUI($this, $this->ctrl->getCmd(), $this->table_id);
200  $this->tpl->setContent($list->getHTML());
201  }
202 
203  protected function checkAccess(): bool
204  {
205  $ref_id = $this->getDataCollectionObject()->getRefId();
206 
208  }
209 
211  {
212  return $this->parent_obj->getDataCollectionObject();
213  }
214 }
ILIAS HTTP Services $http
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getFieldCache(int $field_id=0)
renderer()
ilDclTableListGUI: ilDclFieldListGUI, ilDclFieldEditGUI, ilDclTableViewGUI, ilDclTableEditGUI ...
ilGlobalTemplateInterface $tpl
$ref_id
Definition: ltiauth.php:65
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:22
deleteFields()
Delete multiple fields.
static getTableCache(?int $table_id=null)
ILIAS UI Factory $ui_factory
executeCommand()
execute command
ilDclTableListGUI $parent_obj
static hasAccessToEditTable(int $ref_id, int $table_id)
ILIAS Refinery Factory $refinery
ILIAS UI Renderer $renderer
__construct(ilDclTableListGUI $a_parent_obj)
Constructor.