ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWaitingListTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
30 {
31  protected static ?array $all_columns = null;
32  protected static bool $has_odf_definitions;
33  protected array $wait = [];
34  protected array $wait_user_ids = [];
35  protected ilObject $rep_object;
36  protected ilObjUser $user;
38 
41 
42  public function __construct(
43  object $a_parent_obj,
44  ilObject $rep_object,
45  ilWaitingList $waiting_list
46  ) {
47  global $DIC;
48  $this->renderer = $DIC->ui()->renderer();
49  $this->uiFactory = $DIC->ui()->factory();
50 
51  $this->rep_object = $rep_object;
52  $this->user = $DIC->user();
53 
54  $this->setId('crs_wait_' . $this->getRepositoryObject()->getId());
55  parent::__construct($a_parent_obj, 'participants');
56  $this->setFormName('waiting');
57  $this->setPrefix('waiting');
58 
59  $this->lng->loadLanguageModule('grp');
60  $this->lng->loadLanguageModule('crs');
61  $this->lng->loadLanguageModule('sess');
62  $this->lng->loadLanguageModule('ps');
63 
64  $this->setExternalSorting(false);
65  $this->setExternalSegmentation(true);
66 
67  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, 'participants'));
68 
69  $this->addColumn('', 'f', "1", true);
70  $this->addColumn($this->lng->txt('name'), 'lastname', '20%');
71 
72  $all_cols = $this->getSelectableColumns();
73  foreach ($this->getSelectedColumns() as $col) {
74  $this->addColumn($all_cols[$col]['txt'], $col);
75  }
76 
77  $this->addColumn($this->lng->txt('application_date'), 'sub_time', "10%");
78  $this->addColumn('', 'mail', '10%');
79 
80  $this->addMultiCommand('confirmAssignFromWaitingList', $this->lng->txt('assign'));
81  $this->addMultiCommand('confirmRefuseFromList', $this->lng->txt('refuse'));
82  $this->addMultiCommand('sendMailToSelectedUsers', $this->lng->txt('crs_mem_send_mail'));
83 
84  $this->setDefaultOrderField('sub_time');
85 
86  // begin-patch clipboard
87  $this->lng->loadLanguageModule('user');
88  $this->addMultiCommand('addToClipboard', $this->lng->txt('clipboard_add_btn'));
89  // end-patch clipboard
90 
91  $this->setPrefix('waiting');
92  $this->setSelectAllCheckbox('waiting', true);
93 
94  $this->setRowTemplate("tpl.show_waiting_list_row.html", "components/ILIAS/Membership");
95 
96  $this->enable('sort');
97  $this->enable('header');
98  $this->enable('numinfo');
99  $this->enable('select_all');
100 
101  $this->waiting_list = $waiting_list;
102 
103  self::$has_odf_definitions = (bool) ilCourseDefinedFieldDefinition::_hasFields($this->getRepositoryObject()->getId());
104  }
105 
106  protected function getWaitingList(): ilWaitingList
107  {
108  return $this->waiting_list;
109  }
110 
111  protected function getRepositoryObject(): ilObject
112  {
113  return $this->rep_object;
114  }
115 
120  public function setUserIds(array $a_user_ids): void
121  {
122  $this->wait_user_ids = $this->wait = [];
123  foreach ($a_user_ids as $usr_id) {
124  $this->wait_user_ids[] = $usr_id;
125  $this->wait[$usr_id] = $this->getWaitingList()->getUser($usr_id);
126  }
127  }
128 
129  public function numericOrdering(string $a_field): bool
130  {
131  switch ($a_field) {
132  case 'sub_time':
133  return true;
134  }
135  return parent::numericOrdering($a_field);
136  }
137 
138  public function getSelectableColumns(): array
139  {
140  if (self::$all_columns) {
141  return self::$all_columns;
142  }
143 
145  self::$all_columns = $ef->getSelectableFieldsInfo($this->getRepositoryObject()->getId());
146 
147  // #25215
148  if (
149  is_array(self::$all_columns) &&
150  array_key_exists('consultation_hour', self::$all_columns)
151  ) {
152  unset(self::$all_columns['consultation_hour']);
153  }
154 
155  if (
156  !is_array(self::$all_columns) ||
157  !array_key_exists('login', self::$all_columns)
158  ) {
159  self::$all_columns['login'] = [
160  'default' => 1,
161  'txt' => $this->lng->txt('login')
162  ];
163  }
164  return self::$all_columns;
165  }
166 
167  protected function fillRow(array $a_set): void
168  {
169  if (
170  !ilObjCourseGrouping::_checkGroupingDependencies($this->getRepositoryObject(), (int) $a_set['usr_id']) &&
172  ) {
173  $prefix = $this->getRepositoryObject()->getType();
174  $this->tpl->setVariable(
175  'ALERT_MSG',
176  sprintf(
177  $this->lng->txt($prefix . '_lim_assigned'),
178  ilObject::_lookupTitle(current($ids))
179  )
180  );
181  }
182 
183  $this->tpl->setVariable('VAL_ID', $a_set['usr_id']);
184  $this->tpl->setVariable('VAL_NAME', $a_set['lastname'] . ', ' . $a_set['firstname']);
185 
186  foreach ($this->getSelectedColumns() as $field) {
187  switch ($field) {
188  case 'gender':
189  $a_set['gender'] = $a_set['gender'] ? $this->lng->txt('gender_' . $a_set['gender']) : '';
190  $this->tpl->setCurrentBlock('custom_fields');
191  $this->tpl->setVariable('VAL_CUST', $a_set[$field]);
192  $this->tpl->parseCurrentBlock();
193  break;
194 
195  case 'birthday':
196  $a_set['birthday'] = $a_set['birthday'] ? ilDatePresentation::formatDate(new ilDate(
197  $a_set['birthday'],
199  )) : $this->lng->txt('no_date');
200  $this->tpl->setCurrentBlock('custom_fields');
201  $this->tpl->setVariable('VAL_CUST', $a_set[$field]);
202  $this->tpl->parseCurrentBlock();
203  break;
204 
205  case 'odf_last_update':
206  $this->tpl->setVariable('VAL_CUST', (string) ($a_set['odf_info_txt'] ?? ''));
207  break;
208 
209  case 'org_units':
210  $this->tpl->setCurrentBlock('custom_fields');
211  $this->tpl->setVariable(
212  'VAL_CUST',
213  ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits((int) $a_set['usr_id'])
214  );
215  $this->tpl->parseCurrentBlock();
216  break;
217 
218  default:
219  $this->tpl->setCurrentBlock('custom_fields');
220  $this->tpl->setVariable('VAL_CUST', isset($a_set[$field]) ? (string) $a_set[$field] : '');
221  $this->tpl->parseCurrentBlock();
222  break;
223  }
224  }
225  $this->tpl->setVariable(
226  'VAL_SUBTIME',
227  ilDatePresentation::formatDate(new ilDateTime($a_set['sub_time'], IL_CAL_UNIX))
228  );
229  $this->showActionLinks($a_set);
230  }
231 
232  public function readUserData(): void
233  {
234  $this->determineOffsetAndOrder();
235 
236  $additional_fields = $this->getSelectedColumns();
237  unset(
238  $additional_fields["firstname"],
239  $additional_fields["lastname"],
240  $additional_fields["last_login"],
241  $additional_fields["access_until"],
242  $additional_fields['org_units']
243  );
244 
245  $udf_ids = $usr_data_fields = $odf_ids = array();
246  foreach ($additional_fields as $field) {
247  if (strpos($field, 'udf') === 0) {
248  $udf_ids[] = substr($field, 4);
249  continue;
250  }
251  if (strpos($field, 'odf') === 0) {
252  $odf_ids[] = substr($field, 4);
253  continue;
254  }
255 
256  $usr_data_fields[] = $field;
257  }
258 
259  $usr_data = ilUserQuery::getUserListData(
260  $this->getOrderField(),
261  $this->getOrderDirection(),
262  $this->getOffset(),
263  $this->getLimit(),
264  '',
265  '',
266  null,
267  false,
268  false,
269  0,
270  0,
271  null,
272  $usr_data_fields,
273  $this->wait_user_ids
274  );
275  if (0 === count($usr_data['set']) && $this->getOffset() > 0 && $this->getExternalSegmentation()) {
276  $this->resetOffset();
277 
278  $usr_data = ilUserQuery::getUserListData(
279  $this->getOrderField(),
280  $this->getOrderDirection(),
281  $this->getOffset(),
282  $this->getLimit(),
283  '',
284  '',
285  null,
286  false,
287  false,
288  0,
289  0,
290  null,
291  $usr_data_fields,
292  $this->wait_user_ids
293  );
294  }
295  $usr_ids = [];
296  foreach ((array) $usr_data['set'] as $user) {
297  $usr_ids[] = (int) $user['usr_id'];
298  }
299 
300  // merge course data
301  $course_user_data = $this->getParentObject()->readMemberData($usr_ids, array());
302  $a_user_data = array();
303  foreach ((array) $usr_data['set'] as $ud) {
304  $a_user_data[(int) $ud['usr_id']] = array_merge($ud, $course_user_data[(int) $ud['usr_id']]);
305  }
306 
307  // Custom user data fields
308  if ($udf_ids) {
309  $data = ilUserDefinedData::lookupData($usr_ids, $udf_ids);
310  foreach ($data as $usr_id => $fields) {
311  if (!$this->checkAcceptance($usr_id)) {
312  continue;
313  }
314 
315  foreach ($fields as $field_id => $value) {
316  $a_user_data[$usr_id]['udf_' . $field_id] = $value;
317  }
318  }
319  }
320  // Object specific user data fields
321  if ($odf_ids) {
323  foreach ($data as $usr_id => $fields) {
324  // #7264: as we get data for all course members filter against user data
325  if (!$this->checkAcceptance($usr_id) || !in_array($usr_id, $usr_ids)) {
326  continue;
327  }
328 
329  foreach ($fields as $field_id => $value) {
330  $a_user_data[$usr_id]['odf_' . $field_id] = $value;
331  }
332  }
333 
334  // add last edit date
335  foreach (ilObjectCustomUserFieldHistory::lookupEntriesByObjectId($this->getRepositoryObject()->getId()) as $usr_id => $edit_info) {
336  if (!isset($a_user_data[$usr_id])) {
337  continue;
338  }
339 
340  if ($usr_id == $edit_info['update_user']) {
341  $a_user_data[$usr_id]['odf_last_update'] = '';
342  $a_user_data[$usr_id]['odf_info_txt'] = $GLOBALS['DIC']['lng']->txt('cdf_edited_by_self');
343  if (ilPrivacySettings::getInstance()->enabledAccessTimesByType($this->getRepositoryObject()->getType())) {
344  $a_user_data[$usr_id]['odf_last_update'] .= ('_' . $edit_info['editing_time']->get(IL_CAL_UNIX));
345  $a_user_data[$usr_id]['odf_info_txt'] .= (', ' . ilDatePresentation::formatDate($edit_info['editing_time']));
346  }
347  } else {
348  $a_user_data[$usr_id]['odf_last_update'] = $edit_info['update_user'];
349  $a_user_data[$usr_id]['odf_last_update'] .= ('_' . $edit_info['editing_time']->get(IL_CAL_UNIX));
350 
351  $name = ilObjUser::_lookupName($edit_info['update_user']);
352  $a_user_data[$usr_id]['odf_info_txt'] = ($name['firstname'] . ' ' . $name['lastname'] . ', ' . ilDatePresentation::formatDate($edit_info['editing_time']));
353  }
354  }
355  }
356 
357  foreach ($usr_data['set'] as $user) {
358  // Check acceptance
359  if (!$this->checkAcceptance((int) $user['usr_id'])) {
360  continue;
361  }
362  // DONE: accepted
363  foreach ($usr_data_fields as $field) {
364  $a_user_data[(int) $user['usr_id']][$field] = $user[$field] ?: '';
365  }
366  }
367 
368  // Waiting list subscription
369  foreach ($this->wait as $usr_id => $wait_usr_data) {
370  if (isset($a_user_data[$usr_id])) {
371  $a_user_data[$usr_id]['sub_time'] = $wait_usr_data['time'];
372  }
373  }
374 
375  $this->setMaxCount((int) ($usr_data['cnt'] ?? 0));
376  $this->setData($a_user_data);
377  }
378 
379  public function showActionLinks(array $a_set): void
380  {
381  // tpl variables MAIL_LINK and MAIL_TITLE are unused but not removed
382  // from the template.
383  $this->ctrl->setParameterByClass(get_class($this->getParentObject()), 'member_id', $a_set['usr_id']);
384 
385  $dropDownItems = array();
386  $dropDownItems[] = $this->uiFactory->button()->shy(
387  $this->lng->txt($this->getRepositoryObject()->getType() . '_mem_send_mail'),
388  $this->ctrl->getLinkTargetByClass(get_class($this->getParentObject()), 'sendMailToSelectedUsers')
389  );
390 
391  if (self::$has_odf_definitions) {
392  $dropDownItems[] = $this->uiFactory->button()->shy(
393  $this->lng->txt($this->getRepositoryObject()->getType() . '_cdf_edit_member'),
394  $this->ctrl->getLinkTargetByClass('ilobjectcustomuserfieldsgui', 'editMember')
395  );
396  }
397 
398  $dropDown = $this->uiFactory->dropdown()->standard($dropDownItems)
399  ->withLabel($this->lng->txt('actions'));
400 
401  $this->tpl->setVariable('ACTION_USER', $this->renderer->render($dropDown));
402  $this->ctrl->setParameterByClass(get_class($this->getParentObject()), 'member_id', null);
403  }
404 
405  protected function checkAcceptance(int $a_usr_id): bool
406  {
407  return true;
408  }
409 }
static lookupData(array $a_user_ids, array $a_field_ids)
Lookup data.
setData(array $a_data)
enable(string $a_module_name)
Base class for course and group waiting lists.
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setUserIds(array $a_user_ids)
Set user ids.
renderer()
static _getValuesByObjId(int $a_obj_id)
static _checkGroupingDependencies(ilObject $container_obj, ?int $a_user_id=null)
static _lookupName(int $a_user_id)
lookup user name
const IL_CAL_UNIX
setFormName(string $a_name="")
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.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
resetOffset(bool $a_in_determination=false)
setExternalSorting(bool $a_val)
static _lookupTitle(int $obj_id)
$GLOBALS["DIC"]
Definition: wac.php:53
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
__construct(object $a_parent_obj, ilObject $rep_object, ilWaitingList $waiting_list)
const IL_CAL_DATE
static _getInstanceByType(string $a_type)
Get Singleton Instance.
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
GUI class for course/group waiting list.
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)
addMultiCommand(string $a_cmd, string $a_text)
static _hasFields(int $a_container_id)
Check if there are any define fields.
determineOffsetAndOrder(bool $a_omit_offset=false)
setMaxCount(int $a_max_count)
set max.
setExternalSegmentation(bool $a_val)
setPrefix(string $a_prefix)