ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLearningSequenceParticipantsTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 declare(strict_types=1);
22 
24 {
29  protected ilAccess $access;
31  protected ilSetting $settings;
32 
33  public function __construct(
35  ilObjLearningSequence $ls_object,
36  ilObjUserTracking $obj_user_tracking,
37  ilPrivacySettings $privacy_settings,
39  ilAccess $access,
40  ilRbacReview $rbac_review,
41  ilSetting $settings
42  ) {
43  $this->parent_gui = $parent_gui;
44  $this->rep_object = $ls_object;
45 
46  $this->obj_user_tracking = $obj_user_tracking;
47  $this->privacy_settings = $privacy_settings;
48  $this->lng = $lng;
49  $this->access = $access;
50  $this->rbac_review = $rbac_review;
51  $this->settings = $settings;
52 
53  $this->lng->loadLanguageModule('lso');
54  $this->lng->loadLanguageModule('trac');
55  $this->lng->loadLanguageModule('rbac');
56  $this->lng->loadLanguageModule('mmbr');
57  $this->lng->loadLanguageModule('user');
58  $this->lng->loadLanguageModule('ps');
59 
60  $this->participants = $ls_object->getLSParticipants();
61 
62  $this->setPrefix('participants');
63 
64  $this->setId('lso_' . $this->getRepositoryObject()->getId());
65  parent::__construct($parent_gui, 'participants');
66 
67  $this->initSettings();
68  $this->initForm();
69  }
70 
71  protected function initForm(): void
72  {
73  $this->setFormName('participants');
74  $this->setDefaultOrderField('roles');
75  $this->setRowTemplate("tpl.show_participants_row.html", "components/ILIAS/LearningSequence");
76  $this->setShowRowsSelector(true);
77  $this->setSelectAllCheckbox('participants');
78 
79  $this->addColumn('', 'f', "1");
80  $this->addColumn($this->lng->txt('name'), 'lastname', '20%');
81  $this->addColumn($this->lng->txt('login'), 'login');
82 
83  $all_cols = $this->getSelectableColumns();
84  foreach ($this->getSelectedColumns() as $col) {
85  $this->addColumn($all_cols[$col]['txt'], $col);
86  }
87 
88  if (
89  $this->obj_user_tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_LAST_ACCESS) &&
91 
92  ) {
93  $this->addColumn($this->lng->txt('first_access'), "first_access");
94  $this->addColumn($this->lng->txt('last_access'), "last_access");
95  }
96  $this->addColumn($this->lng->txt('completed_steps'), "completed_steps");
97  $this->addColumn($this->lng->txt('last_visited_step'), "last_visited_step");
98  $this->addColumn($this->lng->txt('lso_notification'), 'notification');
99  $this->addColumn($this->lng->txt(''), 'optional');
100 
101  $this->enable('sort');
102  $this->enable('header');
103  $this->enable('numinfo');
104  $this->enable('select_all');
105 
106  $this->initFilter();
107 
108  $this->addMultiCommand('editParticipants', $this->lng->txt('edit'));
109  $this->addMultiCommand('confirmDeleteParticipants', $this->lng->txt('remove'));
110  $this->addMultiCommand('sendMailToSelectedUsers', $this->lng->txt('mmbr_btn_mail_selected_users'));
111  $this->addMultiCommand('addToClipboard', $this->lng->txt('clipboard_add_btn'));
112  $this->addCommandButton('updateParticipantsStatus', $this->lng->txt('save'));
113  }
114 
115  protected function fillRow(array $a_set): void
116  {
117  $this->tpl->setVariable('VAL_ID', $a_set['usr_id']);
118  $this->tpl->setVariable('VAL_NAME', $a_set['lastname'] . ', ' . $a_set['firstname']);
119  $this->tpl->setVariable('VAL_LOGIN', $a_set['login']);
120 
121  if (
122  !$this->access->checkAccessOfUser((int) $a_set['usr_id'], 'read', '', $this->getRepositoryObject()->getRefId()) &&
123  is_array($info = $this->access->getInfo())
124  ) {
125  $this->tpl->setCurrentBlock('access_warning');
126  $this->tpl->setVariable('PARENT_ACCESS', $info[0]['text']);
127  $this->tpl->parseCurrentBlock();
128  }
129 
130  if (!ilObjUser::_lookupActive((int) $a_set['usr_id'])) {
131  $this->tpl->setCurrentBlock('access_warning');
132  $this->tpl->setVariable('PARENT_ACCESS', $this->lng->txt('usr_account_inactive'));
133  $this->tpl->parseCurrentBlock();
134  }
135 
136  foreach ($this->getSelectedColumns() as $field) {
137  switch ($field) {
138  case 'prtf':
139  $tmp = array();
140  if (array_key_exists('prtf', $a_set) && is_array($a_set['prtf'])) {
141  foreach ($a_set['prtf'] as $prtf_url => $prtf_txt) {
142  $tmp[] = '<a href="' . $prtf_url . '">' . $prtf_txt . '</a>';
143  }
144  }
145  $this->tpl->setCurrentBlock('custom_fields');
146  $this->tpl->setVariable('VAL_CUST', implode('<br />', $tmp));
147  $this->tpl->parseCurrentBlock();
148  break;
149  case 'roles':
150  $this->tpl->setCurrentBlock('custom_fields');
151  $this->tpl->setVariable('VAL_CUST', (string) $a_set['roles_label']);
152  $this->tpl->parseCurrentBlock();
153  break;
154  case 'org_units':
155  $this->tpl->setCurrentBlock('custom_fields');
156  $this->tpl->setVariable('VAL_CUST', ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits((int) $a_set['usr_id']));
157  $this->tpl->parseCurrentBlock();
158  break;
159  default:
160  $this->tpl->setCurrentBlock('custom_fields');
161  $this->tpl->setVariable('VAL_CUST', isset($a_set[$field]) ? (string) $a_set[$field] : '');
162  $this->tpl->parseCurrentBlock();
163  break;
164  }
165  }
166 
167  $this->tpl->setVariable('VAL_POSTNAME', 'participants');
168 
169  if (
170  $this->obj_user_tracking->hasExtendedData(ilObjUserTracking::EXTENDED_DATA_LAST_ACCESS) &&
172 
173  ) {
174  $this->tpl->setVariable('FIRST_ACCESS', $this->getFirstAccess((int) $a_set['usr_id']));
175  $this->tpl->setVariable('LAST_ACCESS', $this->getLastAccess((int) $a_set['usr_id']));
176  }
177 
178  $this->tpl->setVariable('COMPLETED_STEPS', $this->getCompletedSteps((int) $a_set['usr_id']));
179  $this->tpl->setVariable('LAST_VISITED_STEP', $this->getLastVisitedStep((int) $a_set['usr_id']));
180 
181  if ($this->getParticipants()->isAdmin((int) $a_set['usr_id'])) {
182  $this->tpl->setVariable('VAL_NOTIFICATION_ID', (int) $a_set['usr_id']);
183  $this->tpl->setVariable(
184  'VAL_NOTIFICATION_CHECKED',
185  $a_set['notification'] ? 'checked="checked"' : ''
186  );
187  }
188 
189  $this->showActionLinks($a_set);
190  $this->tpl->setVariable('VAL_LOGIN', $a_set['login']);
191  }
192 
193  protected function getFirstAccess(int $user_id): string
194  {
195  $data = $this->getRepositoryObject()->getStateDB()->getFirstAccessFor(
196  $this->getRepositoryObject()->getRefId(),
197  [$user_id]
198  );
199 
200  if ($data[$user_id] === '-1') {
201  return "-";
202  }
203 
204  return $data[$user_id];
205  }
206 
207  protected function getLastAccess(int $user_id): string
208  {
209  $data = $this->getRepositoryObject()->getStateDB()->getLastAccessFor(
210  $this->getRepositoryObject()->getRefId(),
211  [$user_id]
212  );
213 
214  if ($data[$user_id] === '-1') {
215  return "-";
216  }
217 
218  return $data[$user_id];
219  }
220 
221  protected function getCompletedSteps(int $user_id): string
222  {
223  $passed = 0;
224 
225  $learner_items = $this->getRepositoryObject()->getLSLearnerItems(
226  $user_id
227  );
228 
229  $completion_states = $this->rep_object->getLPCompletionStates();
230 
231  foreach ($learner_items as $learner_item) {
232  if (in_array($learner_item->getLearningProgressStatus(), $completion_states)) {
233  $passed++;
234  }
235  }
236 
237  return $passed . " / " . count($learner_items);
238  }
239 
245  protected function getLastVisitedStep(int $user_id): string
246  {
247  $data = $this->getRepositoryObject()->getStateDB()->getCurrentItemsFor(
248  $this->getRepositoryObject()->getRefId(),
249  [$user_id]
250  );
251 
252  if ($data[$user_id] === -1) {
253  return "-";
254  }
255 
256  return $this->getTitleFor((int) $data[$user_id]);
257  }
258 
259  protected function getTitleFor(int $ref_id): string
260  {
262  }
263 
264  public function parse(): void
265  {
266  $this->determineOffsetAndOrder(true);
267 
268  $ls_participants = $this->participants->getParticipants();
269 
270  $ls_participants = $this->access->filterUserIdsByRbacOrPositionOfCurrentUser(
271  'manage_members',
272  'manage_members',
273  $this->getRepositoryObject()->getRefId(),
274  $ls_participants
275  );
276 
277  if (!$ls_participants) {
278  $this->setData(array());
279  return;
280  }
281 
282  $lso_user_data = $this->parent_gui->readMemberData(
283  $ls_participants,
284  $this->getSelectedColumns()
285  );
286 
287  $additional_fields = $this->getSelectedColumns();
288  unset($additional_fields['prtf']);
289  unset($additional_fields['roles']);
290  unset($additional_fields['org_units']);
291 
292  $udf_ids = $usr_data_fields = $odf_ids = array();
293  foreach ($additional_fields as $field) {
294  if (substr($field, 0, 3) == 'udf') {
295  $udf_ids[] = substr($field, 4);
296  continue;
297  }
298 
299  if (substr($field, 0, 3) == 'odf') {
300  $odf_ids[] = substr($field, 4);
301  continue;
302  }
303 
304  $usr_data_fields[] = $field;
305  }
306 
307  $usr_data = ilUserQuery::getUserListData(
308  $this->getOrderField(),
309  $this->getOrderDirection(),
310  0,
311  9999,
312  $this->current_filter['login'],
313  '',
314  null,
315  false,
316  false,
317  0,
318  0,
319  null,
320  $usr_data_fields,
321  $ls_participants
322  );
323 
324  $user_data = array();
325  $filtered_user_ids = array();
326  $local_roles = $this->parent_gui->getLocalRoles();
327 
328  foreach ($usr_data['set'] as $ud) {
329  $user_id = $ud['usr_id'];
330 
331  if ($this->current_filter['roles']) {
332  if (!$this->rbac_review->isAssigned($user_id, $this->current_filter['roles'])) {
333  continue;
334  }
335  }
336 
337  if (array_key_exists('org_units', $this->current_filter)
338  && $this->current_filter['org_units'] !== ''
339  ) {
340  $org_unit = $this->current_filter['org_units'];
341  $title = ilObjectFactory::getInstanceByRefId($org_unit)->getTitle();
342  $user_units = ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits((int) $user_id);
343  if (strpos($user_units, $title) === false) {
344  continue;
345  }
346  }
347 
348  $filtered_user_ids[] = $user_id;
349  $user_data[$user_id] = array_merge($ud, $lso_user_data[$user_id]);
350 
351  $roles = array();
352  foreach ($local_roles as $role_id => $role_name) {
353  if ($this->rbac_review->isAssigned((int) $user_id, $role_id)) {
354  $roles[] = $role_name;
355  }
356  }
357 
358  $user_data[$user_id]['name'] = $user_data[$user_id]['lastname'] . ', ' . $user_data[$user_id]['firstname'];
359  $user_data[$user_id]['roles_label'] = implode('<br />', $roles);
360  $user_data[$user_id]['roles'] = $this->participants->setRoleOrderPosition((int) $user_id);
361  }
362 
363  // Custom user data fields
364  if ($udf_ids !== []) {
365  $data = ilUserDefinedData::lookupData($ls_participants, $udf_ids);
366  foreach ($data as $usr_id => $fields) {
367  if (!$this->checkAcceptance((int) $usr_id)) {
368  continue;
369  }
370 
371  foreach ($fields as $field_id => $value) {
372  $user_data[$usr_id]['udf_' . $field_id] = $value;
373  }
374  }
375  }
376 
377  $user_data = ilArrayUtil::sortArray(
378  $user_data,
379  'name',
380  $this->getOrderDirection()
381  );
382 
383  $this->setData($user_data);
384  }
385 
386  public function getSelectableColumns(): array
387  {
388  $ef = $this->getExportFieldsInfo();
389  $columns = $ef->getSelectableFieldsInfo(
390  $this->getRepositoryObject()->getId()
391  );
392 
393  if ($this->settings->get('user_portfolios')) {
394  $columns['prtf'] = array(
395  'txt' => $this->lng->txt('obj_prtf'),
396  'default' => false
397  );
398  }
399 
400  return array_merge(
401  [
402  'roles' => [
403  'txt' => $this->lng->txt('objs_role'),
404  'default' => true
405  ]
406  ],
407  [
408  'org_units' => [
409  'txt' => $this->lng->txt("org_units"),
410  'default' => false
411  ]
412  ],
413  $columns
414  );
415  }
416 
418  {
420  $this->getRepositoryObject()->getType()
421  );
422  }
423 }
static lookupData(array $a_user_ids, array $a_field_ids)
Lookup data.
setData(array $a_data)
enable(string $a_module_name)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setFormName(string $a_name="")
ilLanguage $lng
setId(string $a_val)
static getUserListData(string $a_order_field, string $a_order_dir, int $a_offset, int $a_limit, string $a_string_filter="", string $a_activation_filter="", ?ilDateTime $a_last_login_filter=null, bool $a_limited_access_filter=false, bool $a_no_courses_filter=false, int $a_course_group_filter=0, int $a_role_filter=0, ?array $a_user_folder_filter=null, ?array $a_additional_fields=null, ?array $a_user_filter=null, string $a_first_letter="", string $a_authentication_filter="")
Get data for user administration list.
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
$ref_id
Definition: ltiauth.php:65
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
Singleton class that stores all privacy settings.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
__construct(ilLearningSequenceMembershipGUI $parent_gui, ilObjLearningSequence $ls_object, ilObjUserTracking $obj_user_tracking, ilPrivacySettings $privacy_settings, ilLanguage $lng, ilAccess $access, ilRbacReview $rbac_review, ilSetting $settings)
static _getInstanceByType(string $a_type)
Get Singleton Instance.
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
getLastVisitedStep(int $user_id)
Different to the concept we decide to use the title of the object instead of its actually number in t...
addMultiCommand(string $a_cmd, string $a_text)
determineOffsetAndOrder(bool $a_omit_offset=false)
GUI class for learning sequence membership features.
static _lookupActive(int $a_usr_id)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
setPrefix(string $a_prefix)