ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMStListUsersTableGUI.php
Go to the documentation of this file.
1 <?php
18 declare(strict_types=1);
19 
20 namespace ILIAS\MyStaff\ListUsers;
21 
23 
29 {
30  protected array $filter = [];
31  protected array $cached_selectable_columns = [];
32  protected array $usr_orgu_names = [];
34 
35  private \ILIAS\UI\Factory $uiFactory;
36  private \ILIAS\UI\Renderer $uiRenderer;
37  private \ilLanguage $language;
38 
44  {
45  global $DIC;
46 
48 
49  $this->setPrefix('myst_lu');
50  $this->setFormName('myst_lu');
51  $this->setId('myst_lu');
52 
53  parent::__construct($parent_obj, $parent_cmd, '');
54 
55  $this->uiFactory = $DIC->ui()->factory();
56  $this->uiRenderer = $DIC->ui()->renderer();
57  $this->language = $DIC->language();
58 
59  $this->setRowTemplate('tpl.list_users_row.html', "components/ILIAS/MyStaff");
60  $this->setFormAction($DIC->ctrl()->getFormAction($parent_obj));
61  $this->setDefaultOrderDirection('desc');
62 
63  $this->setShowRowsSelector(true);
64 
65  $this->setEnableTitle(true);
66  $this->setDisableFilterHiding(true);
67  $this->setEnableNumInfo(true);
68 
69  $this->setExportFormats(array(self::EXPORT_EXCEL, self::EXPORT_CSV));
70 
71  $this->setFilterCols(4);
72  $this->initFilter();
73  $this->addColumns();
74 
75  $this->parseData();
76  }
77 
78  protected function parseData(): void
79  {
80  global $DIC;
81 
82  $this->setExternalSorting(true);
83  $this->setExternalSegmentation(true);
84  $this->setDefaultOrderField('lastname');
85 
86  $this->determineLimit();
87  $this->determineOffsetAndOrder();
88 
89  //Permission Filter
90  $arr_usr_id = $this->access->getUsersForUser($DIC->user()->getId());
91 
92  $options = array(
93  'filters' => $this->filter,
94  'limit' => array(
95  'start' => $this->getOffset(),
96  'end' => $this->getLimit(),
97  ),
98  'sort' => array(
99  'field' => $this->getOrderField(),
100  'direction' => $this->getOrderDirection(),
101  ),
102  );
103 
104  $list_users_fetcher = new ilMStListUsers($DIC);
105  $result = $list_users_fetcher->getData($arr_usr_id, $options);
106 
107  $this->setMaxCount($result->getTotalDatasetCount());
108  $data = $result->getDataset();
109 
110  // Workaround because the fillRow Method only accepts arrays
111  $data = array_map(function (ilMStListUser $it): array {
112  return [$it];
113  }, $data);
114  $this->setData($data);
115  }
116 
117  final public function initFilter(): void
118  {
119  global $DIC;
120 
121  // User name, login, email filter
122  $item = new \ilTextInputGUI(
123  $DIC->language()->txt("login") . "/" . $DIC->language()->txt("email") . "/" . $DIC->language()
124  ->txt("name"),
125  "user"
126  );
127  $this->addFilterItem($item);
128  $item->readFromSession();
129  $this->filter['user'] = $item->getValue();
130 
131  if (\ilUserSearchOptions::_isEnabled('org_units')) {
133  $options[0] = $DIC->language()->txt('mst_opt_all');
134  foreach ($paths as $org_ref_id => $path) {
135  $options[$org_ref_id] = $path;
136  }
137  $item = new \ilSelectInputGUI($DIC->language()->txt('obj_orgu'), 'org_unit');
138  $item->setOptions($options);
139  $item->addCustomAttribute("style='width:100%'");
140  $this->addFilterItem($item);
141  $item->readFromSession();
142  $this->filter['org_unit'] = $item->getValue();
143  }
144  }
145 
146  final public function getSelectableColumns(): array
147  {
148  if ($this->cached_selectable_columns) {
150  }
151 
152  return $this->cached_selectable_columns = $this->initSelectableColumns();
153  }
154 
155  protected function initSelectableColumns(): array
156  {
157  $arr_fields_without_table_sort = array(
158  'org_units',
159  'interests_general',
160  'interests_help_offered',
161  'interests_help_looking',
162  );
163  $cols = array();
164  foreach (\ilUserSearchOptions::getSelectableColumnInfo() as $key => $col) {
165  $cols[$key] = $col;
166  if (!in_array($key, $arr_fields_without_table_sort)) {
167  $cols[$key]['sort_field'] = $key;
168  }
169  }
170 
171  $user_defined_fields = \ilUserDefinedFields::_getInstance();
172  foreach ($user_defined_fields->getDefinitions() as $field => $definition) {
173  unset($cols["udf_" . $field]);
174  }
175 
176  return $cols;
177  }
178 
179  private function addColumns(): void
180  {
181  global $DIC;
182 
183  //User Profile Picture
184  if (!$this->getExportMode()) {
185  $this->addColumn('');
186  }
187 
188  foreach ($this->getSelectableColumns() as $k => $v) {
189  if ($this->isColumnSelected($k)) {
190  $sort = $v['sort_field'] ?? "";
191  $this->addColumn($v['txt'], $sort);
192  }
193  }
194  //Actions
195  if (!$this->getExportMode()) {
196  $this->addColumn($DIC->language()->txt('actions'));
197  }
198  }
199 
200  protected function getTextRepresentationOfUsersOrgUnits(int $user_id): string
201  {
202  if (isset($this->usr_orgu_names[$user_id])) {
203  return $this->usr_orgu_names[$user_id];
204  }
205 
206  return $this->usr_orgu_names[$user_id] = \ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits($user_id);
207  }
208 
215  final protected function fillRow(array $a_set): void
216  {
217  $set = array_pop($a_set);
218 
219  $propGetter = \Closure::bind(function ($prop) {
220  return $this->$prop ?? null;
221  }, $set, $set);
222 
223  //Avatar
224  $this->tpl->setCurrentBlock('user_profile_picture');
225  $il_obj_user = $set->returnIlUserObj();
226  $avatar = $this->uiFactory->image()->standard($il_obj_user->getPersonalPicturePath('small'), $il_obj_user->getPublicName());
227  $this->tpl->setVariable('user_profile_picture', $this->uiRenderer->render($avatar));
228  $this->tpl->parseCurrentBlock();
229 
230  foreach ($this->getSelectedColumns() as $k => $v) {
231  switch ($k) {
232  case 'org_units':
233  $this->tpl->setCurrentBlock('td');
234  $this->tpl->setVariable(
235  'VALUE',
236  $this->getTextRepresentationOfUsersOrgUnits($set->getUsrId())
237  );
238  $this->tpl->parseCurrentBlock();
239  break;
240  case 'gender':
241  $this->tpl->setCurrentBlock('td');
242  $this->tpl->setVariable('VALUE', $this->language->txt('gender_' . $set->getGender()));
243  $this->tpl->parseCurrentBlock();
244  break;
245  case 'interests_general':
246  $this->tpl->setCurrentBlock('td');
247  $this->tpl->setVariable('VALUE', ($set->returnIlUserObj()
248  ->getGeneralInterestsAsText() ? $set->returnIlUserObj()->getGeneralInterestsAsText() : '&nbsp;'));
249  $this->tpl->parseCurrentBlock();
250  break;
251  case 'interests_help_offered':
252  $this->tpl->setCurrentBlock('td');
253  $this->tpl->setVariable('VALUE', ($set->returnIlUserObj()
254  ->getOfferingHelpAsText() ? $set->returnIlUserObj()->getOfferingHelpAsText() : '&nbsp;'));
255  $this->tpl->parseCurrentBlock();
256  break;
257  case 'interests_help_looking':
258  $this->tpl->setCurrentBlock('td');
259  $this->tpl->setVariable('VALUE', ($set->returnIlUserObj()
260  ->getLookingForHelpAsText() ? $set->returnIlUserObj()->getLookingForHelpAsText() : '&nbsp;'));
261  $this->tpl->parseCurrentBlock();
262  break;
263  default:
264  if ($propGetter($k) !== null) {
265  $this->tpl->setCurrentBlock('td');
266  $this->tpl->setVariable(
267  'VALUE',
268  (is_array($propGetter($k)) ? implode(", ", $propGetter($k)) : $propGetter($k))
269  );
270  $this->tpl->parseCurrentBlock();
271  } else {
272  $this->tpl->setCurrentBlock('td');
273  $this->tpl->setVariable('VALUE', '&nbsp;');
274  $this->tpl->parseCurrentBlock();
275  }
276  break;
277  }
278  }
279 
280  $mst_lus_usr_id = $set->getUsrId();
281 
282  $actions = [];
283 
284  if ($this->access->hasCurrentUserAccessToCourseMemberships()) {
285  $this->ctrl->setParameterByClass(\ilMStShowUserCoursesGUI::class, 'usr_id', $mst_lus_usr_id);
286  $actions[] = $this->uiFactory->link()->standard(
287  $this->language->txt("mst_show_courses"),
288  $this->ctrl->getLinkTargetByClass([
289  \ilDashboardGUI::class,
290  \ilMyStaffGUI::class,
291  \ilMStShowUserGUI::class,
292  \ilMStShowUserCoursesGUI::class,
293  ])
294  );
295  }
296 
297  if ($this->access->hasCurrentUserAccessToCertificates()) {
298  $this->ctrl->setParameterByClass(\ilUserCertificateGUI::class, 'usr_id', $mst_lus_usr_id);
299  $actions[] = $this->uiFactory->link()->standard(
300  $this->language->txt("mst_list_certificates"),
301  $this->ctrl->getLinkTargetByClass([
302  \ilDashboardGUI::class,
303  \ilMyStaffGUI::class,
304  \ilMStShowUserGUI::class,
305  \ilUserCertificateGUI::class,
306  ])
307  );
308  }
309 
310  if ($this->access->hasCurrentUserAccessToCompetences()) {
311  $this->ctrl->setParameterByClass(\ilMStShowUserCompetencesGUI::class, 'usr_id', $mst_lus_usr_id);
312  $actions[] = $this->uiFactory->link()->standard(
313  $this->language->txt("mst_list_competences"),
314  $this->ctrl->getLinkTargetByClass([
315  \ilDashboardGUI::class,
316  \ilMyStaffGUI::class,
317  \ilMStShowUserGUI::class,
318  \ilMStShowUserCompetencesGUI::class,
319  ])
320  );
321  }
322 
323 
324  $this->ctrl->setParameterByClass(\ilMStListUsersGUI::class, 'mst_lus_usr_id', $mst_lus_usr_id);
325 
326  $actions[] = \ilMyStaffGUI::extendActionMenuWithUserActions(
327  $mst_lus_usr_id,
328  rawurlencode($this->ctrl->getLinkTargetByClass("ilMStListUsersGUI", \ilMStListUsersGUI::CMD_INDEX))
329  );
330 
331  $dropdown = $this->uiFactory->dropdown()->standard($actions)->withLabel($this->lng->txt("actions"));
332  $this->tpl->setVariable("ACTIONS", $this->uiRenderer->render($dropdown));
333  $this->tpl->parseCurrentBlock();
334  }
335 
336  private function getProfileBackUrl(): string
337  {
338  global $DIC;
339 
340  return rawurlencode($DIC->ctrl()->getLinkTargetByClass(
341  strtolower(\ilMyStaffGUI::class),
343  ));
344  }
345 
346  protected function fillRowExcel(\ilExcel $a_excel, int &$a_row, array $a_set): void
347  {
348  $set = array_pop($a_set);
349 
350  $col = 0;
351  foreach ($this->getFieldValuesForExport($set) as $k => $v) {
352  $a_excel->setCell($a_row, $col, $v);
353  $col++;
354  }
355  }
356 
357  protected function fillRowCSV(\ilCSVWriter $a_csv, array $a_set): void
358  {
359  $set = array_pop($a_set);
360 
361  foreach ($this->getFieldValuesForExport($set) as $k => $v) {
362  $a_csv->addColumn($v);
363  }
364  $a_csv->addRow();
365  }
366 
367  protected function getFieldValuesForExport(ilMStListUser $my_staff_user): array
368  {
369  global $DIC;
370 
371  $propGetter = \Closure::bind(function ($prop) {
372  return $this->$prop ?? null;
373  }, $my_staff_user, $my_staff_user);
374 
375  $field_values = array();
376 
377  foreach ($this->getSelectedColumns() as $k => $v) {
378  switch ($k) {
379  case 'org_units':
380  $field_values[$k] = $this->getTextRepresentationOfUsersOrgUnits($my_staff_user->getUsrId());
381  break;
382  case 'gender':
383  $field_values[$k] = $DIC->language()->txt('gender_' . $my_staff_user->getGender());
384  break;
385  case 'interests_general':
386  $field_values[$k] = $my_staff_user->returnIlUserObj()->getGeneralInterestsAsText();
387  break;
388  case 'interests_help_offered':
389  $field_values[$k] = $my_staff_user->returnIlUserObj()->getOfferingHelpAsText();
390  break;
391  case 'interests_help_looking':
392  $field_values[$k] = $my_staff_user->returnIlUserObj()->getLookingForHelpAsText();
393  break;
394  default:
395  $field_values[$k] = strip_tags($propGetter($k) ?? "");
396  break;
397  }
398  }
399 
400  return $field_values;
401  }
402 }
setData(array $a_data)
addColumn(string $a_col)
setExportFormats(array $formats)
Set available export formats.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const string CMD_INDEX
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
setEnableTitle(bool $a_enabletitle)
setDisableFilterHiding(bool $a_val=true)
setFormName(string $a_name="")
setId(string $a_val)
$path
Definition: ltiservices.php:29
fillRowExcel(\ilExcel $a_excel, int &$a_row, array $a_set)
static getTextRepresentationOfOrgUnits(bool $sort_by_title=true)
Get ref id path array.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setExternalSorting(bool $a_val)
isColumnSelected(string $col)
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setDefaultOrderDirection(string $a_defaultorderdirection)
static getSelectableColumnInfo(bool $a_admin=false)
Get info of searchable fields for selectable columns in table gui.
setEnableNumInfo(bool $a_val)
__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)
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
__construct(\ilMStListUsersGUI $parent_obj, $parent_cmd=\ilMStListUsersGUI::CMD_INDEX)
determineOffsetAndOrder(bool $a_omit_offset=false)
setMaxCount(int $a_max_count)
set max.
setFilterCols(int $a_val)
setExternalSegmentation(bool $a_val)
setPrefix(string $a_prefix)