ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjAwarenessAdministrationGUI.php
Go to the documentation of this file.
1 <?php
2 
26 {
28  protected \ILIAS\Awareness\AdminManager $admin_manager;
29 
33  public function __construct(
34  $a_data,
35  int $a_id,
36  bool $a_call_by_reference = true,
37  bool $a_prepare_output = true
38  ) {
39  global $DIC;
40 
41  $this->rbacsystem = $DIC->rbac()->system();
42  $this->ctrl = $DIC->ctrl();
43  $this->lng = $DIC->language();
44  $this->type = "awra";
45  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
46 
47  $this->lng->loadLanguageModule("awrn");
48  $this->lng->loadLanguageModule("pd");
49  $this->lng->loadLanguageModule("usr");
50  $this->admin_manager = $DIC->awareness()
51  ->internal()
52  ->domain()
53  ->admin($this->requested_ref_id);
54  }
55 
56  public function executeCommand(): void
57  {
58  $next_class = $this->ctrl->getNextClass($this);
59  $cmd = $this->ctrl->getCmd();
60 
61  $this->prepareOutput();
62 
63  switch ($next_class) {
64  case 'iluseractionadmingui':
65  $gui = new ilUserActionAdminGUI($this->requested_ref_id);
66  $gui->setActionContext(new ilAwarenessUserActionContext());
67  $this->tabs_gui->setTabActive('settings');
68  $this->setSubTabs("actions");
69  $this->ctrl->forwardCommand($gui);
70  break;
71 
72  case 'ilpermissiongui':
73  $this->tabs_gui->setTabActive('perm_settings');
74  $perm_gui = new ilPermissionGUI($this);
75  $this->ctrl->forwardCommand($perm_gui);
76  break;
77 
78  default:
79  if (!$cmd || $cmd == 'view') {
80  $cmd = "editSettings";
81  }
82 
83  $this->$cmd();
84  break;
85  }
86  }
87 
88  public function getAdminTabs(): void
89  {
90  $rbacsystem = $this->rbacsystem;
91 
92  if ($rbacsystem->checkAccess("visible,read", $this->object->getRefId())) {
93  $this->tabs_gui->addTab(
94  "settings",
95  $this->lng->txt("settings"),
96  $this->ctrl->getLinkTarget($this, "editSettings")
97  );
98  }
99 
100  if ($rbacsystem->checkAccess('edit_permission', $this->object->getRefId())) {
101  $this->tabs_gui->addTab(
102  "perm_settings",
103  $this->lng->txt("perm_settings"),
104  $this->ctrl->getLinkTargetByClass('ilpermissiongui', "perm")
105  );
106  }
107  }
108 
109  public function setSubTabs(string $a_id): void
110  {
111  $this->tabs_gui->addSubTab(
112  "settings",
113  $this->lng->txt("settings"),
114  $this->ctrl->getLinkTarget($this, "editSettings")
115  );
116 
117  $this->tabs_gui->addSubTab(
118  "actions",
119  $this->lng->txt("user_actions"),
120  $this->ctrl->getLinkTargetByClass("iluseractionadmingui")
121  );
122 
123  $this->tabs_gui->activateSubTab($a_id);
124  }
125 
126 
130  public function editSettings(?ilPropertyFormGUI $a_form = null): bool
131  {
132  $this->tabs_gui->setTabActive('settings');
133  $this->setSubTabs("settings");
134 
135  if (!$a_form) {
136  $a_form = $this->initFormSettings();
137  }
138  $this->tpl->setContent($a_form->getHTML());
139  return true;
140  }
141 
145  public function saveSettings(): void
146  {
147  $ilCtrl = $this->ctrl;
148 
149  $this->checkPermission("write");
150 
151  $form = $this->initFormSettings();
152  if ($form->checkInput()) {
153  $awrn_set = new ilSetting("awrn");
154  $awrn_set->set("awrn_enabled", (bool) $form->getInput("enable_awareness"));
155 
156  $p = (int) $form->getInput("caching_period");
157  if ($p < 0) {
158  $p = 0;
159  }
160  $awrn_set->set("caching_period", $p);
161 
162  $awrn_set->set("max_nr_entries", (int) $form->getInput("max_nr_entries"));
163  $awrn_set->set("use_osd", (int) $form->getInput("use_osd"));
164 
165  $pd_set = new ilSetting("pd");
166  $pd_set->set("user_activity_time", (int) $form->getInput("time_removal"));
167 
168  $prov = $this->admin_manager->getAllUserProviders();
169  foreach ($prov as $p) {
170  $this->admin_manager->setActivationMode(
171  $p->getProviderId(),
172  (int) $form->getInput("up_act_mode_" . $p->getProviderId())
173  );
174  }
175 
176  $this->tpl->setOnScreenMessage('success', $this->lng->txt("settings_saved"), true);
177  $ilCtrl->redirect($this, "editSettings");
178  }
179 
180  $form->setValuesByPost();
181  $this->editSettings($form);
182  }
183 
187  public function cancel(): void
188  {
189  $ilCtrl = $this->ctrl;
190 
191  $ilCtrl->redirect($this, "view");
192  }
193 
194  protected function initFormSettings(): ilPropertyFormGUI
195  {
196  $lng = $this->lng;
197 
198  $form = new ilPropertyFormGUI();
199  $form->setFormAction($this->ctrl->getFormAction($this));
200  $form->setTitle($this->lng->txt('awareness_settings'));
201 
202  if ($this->checkPermissionBool("write")) {
203  $form->addCommandButton('saveSettings', $this->lng->txt('save'));
204  $form->addCommandButton('cancel', $this->lng->txt('cancel'));
205  }
206 
207  $en = new ilCheckboxInputGUI($lng->txt("awrn_enable"), "enable_awareness");
208  $form->addItem($en);
209 
210  $awrn_set = new ilSetting("awrn");
211  $en->setChecked($awrn_set->get("awrn_enabled", false));
212 
213  // caching period
214  $ti = new ilNumberInputGUI($this->lng->txt("awrn_caching_period"), "caching_period");
215  $ti->setInfo($this->lng->txt("awrn_caching_period_info"));
216  $ti->setSuffix($this->lng->txt("awrn_seconds"));
217  $ti->setSize(6);
218  $ti->setMaxLength(6);
219  $ti->setValue($awrn_set->get("caching_period"));
220  $en->addSubItem($ti);
221 
222  // limit number of entries
223  $ti = new ilNumberInputGUI($this->lng->txt("awrn_max_nr_entries"), "max_nr_entries");
224  $ti->setInfo($this->lng->txt("awrn_max_nr_entries_info"));
225  $ti->setSize(3);
226  $ti->setMaxLength(3);
227  $ti->setMinValue(5);
228  $ti->setMaxValue(200);
229  $ti->setValue($awrn_set->get("max_nr_entries"));
230  $en->addSubItem($ti);
231 
232  // maximum inactivity time
233  $pd_set = new ilSetting("pd"); // under pd settings due to historical reasons
234  $ti_prop = new ilNumberInputGUI(
235  $lng->txt("awrn_max_inactivity"),
236  "time_removal"
237  );
238  $ti_prop->setSuffix($this->lng->txt("awrn_minutes"));
239  if ($pd_set->get("user_activity_time") > 0) {
240  $ti_prop->setValue($pd_set->get("user_activity_time"));
241  }
242  $ti_prop->setInfo($lng->txt("awrn_max_inactivity_info"));
243  $ti_prop->setMaxLength(3);
244  $ti_prop->setSize(3);
245  $en->addSubItem($ti_prop);
246 
247  // activate osd
248  $osd = new ilCheckboxInputGUI($this->lng->txt("awrn_use_osd"), "use_osd");
249  $osd->setInfo($this->lng->txt("awrn_use_osd_info"));
250  $osd->setChecked($awrn_set->get("use_osd", true));
251  $en->addSubItem($osd);
252 
253 
254  $prov = $this->admin_manager->getAllUserProviders();
255  foreach ($prov as $p) {
256  // activation mode
257  $options = $this->admin_manager->getModeOptions();
258  $si = new ilSelectInputGUI($p->getTitle(), "up_act_mode_" . $p->getProviderId());
259  $si->setOptions($options);
260  $si->setInfo($p->getInfo());
261  $si->setValue($this->admin_manager->getActivationMode($p->getProviderId()));
262  $en->addSubItem($si);
263  }
264 
265  return $form;
266  }
267 }
setSuffix(string $a_value)
This class represents a selection list property in a property form.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
User action administration GUI class.
prepareOutput(bool $show_sub_objects=true)
setOptions(array $a_options)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
ilLanguage $lng
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
This class represents a number property in a property form.
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
editSettings(?ilPropertyFormGUI $a_form=null)
Edit settings.