ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilCourseParticipantsTableGUI.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=0);
20
22use ILIAS\User\Profile\Data as ProfileData;
23
29{
30 protected bool $show_learning_progress = false;
31 protected bool $show_timings = false;
32 protected bool $show_lp_status_sync = false;
33
36
39 protected ilObjUser $user;
40 protected Profile $profile;
41 protected array $cached_user_names = [];
42
43 public function __construct(
44 object $a_parent_obj,
46 bool $a_show_learning_progress = false,
47 bool $a_show_timings = false,
48 bool $a_show_lp_status_sync = false,
50 ) {
51 global $DIC;
52
53 $this->show_learning_progress = $a_show_learning_progress;
54
55 if (null === $preloader) {
59 );
60 }
61 $this->preLoader = $preloader;
62 $this->show_timings = $a_show_timings;
63 $this->show_lp_status_sync = $a_show_lp_status_sync;
64 $this->rep_object = $rep_object;
65
67 $this->show_lp_status_sync = false;
68 }
69 $this->privacy = ilPrivacySettings::getInstance();
70 $this->access = $DIC->access();
71 $this->participants = ilParticipants::getInstanceByObjId($this->getRepositoryObject()->getId());
72 $this->rbacReview = $DIC->rbac()->review();
73 $this->user = $DIC->user();
74 $this->profile = $DIC['user']->getProfile();
75
76 $this->setId('crs_' . $this->getRepositoryObject()->getId());
77 parent::__construct($a_parent_obj, 'participants');
78
79 $this->lng->loadLanguageModule('crs');
80 $this->lng->loadLanguageModule('trac');
81 $this->lng->loadLanguageModule('rbac');
82 $this->lng->loadLanguageModule('mmbr');
83 $this->lng->loadLanguageModule('cert');
84 $this->lng->loadLanguageModule('certificate');
85
86 $this->initSettings();
87
88 $this->setFormName('participants');
89
90 $this->addColumn('', 'f', '1', true);
91 $this->addColumn($this->lng->txt('name'), 'name', '20%');
92
93 $all_cols = $this->getSelectableColumns();
94 foreach ($this->getSelectedColumns() as $col) {
95 $this->addColumn($all_cols[$col]['txt'], $col);
96 }
97
98 if ($this->show_learning_progress) {
99 $this->addColumn($this->lng->txt('learning_progress'), 'progress');
100 }
101
102 if ($this->privacy->enabledCourseAccessTimes()) {
103 $this->addColumn($this->lng->txt('last_access'), 'access_ut', '16em');
104 }
105
106 $this->addColumn($this->lng->txt('crs_member_passed'), 'passed');
107 if ($this->show_lp_status_sync) {
108 $this->addColumn($this->lng->txt('crs_member_passed_status_changed'), 'passed_timestamp');
109 }
110
111 $this->setSelectAllCheckbox('participants', true);
112 $this->addColumn($this->lng->txt('crs_mem_contact'), 'contact');
113 $this->addColumn($this->lng->txt('crs_blocked'), 'blocked');
114 $this->addColumn($this->lng->txt('crs_notification_list_title'), 'notification');
115
116 $this->addColumn($this->lng->txt('actions'), 'optional', '', false, 'ilMembershipRowActionsHeader');
117
118 $this->setRowTemplate("tpl.show_participants_row.html", "components/ILIAS/Course");
119
120 $this->setDefaultOrderField('roles');
121 $this->enable('sort');
122 $this->enable('header');
123 $this->enable('numinfo');
124 $this->enable('select_all');
125
126 $this->setEnableNumInfo(true);
127 $this->setExternalSegmentation(false);
128 $this->setTopCommands(true);
129 $this->setEnableHeader(true);
130 $this->setEnableTitle(true);
131 $this->initFilter();
132
133 $this->setShowRowsSelector(true);
134
135 $preloader->preLoadDownloadableCertificates($this->getRepositoryObject()->getId());
136 $this->addMultiCommand('editParticipants', $this->lng->txt('edit'));
137 $this->addMultiCommand('confirmDeleteParticipants', $this->lng->txt('remove'));
138 $this->addMultiCommand('sendMailToSelectedUsers', $this->lng->txt('mmbr_btn_mail_selected_users'));
139 $this->lng->loadLanguageModule('user');
140 $this->addMultiCommand('addToClipboard', $this->lng->txt('clipboard_add_btn'));
141
142 $this->addCommandButton('updateParticipantsStatus', $this->lng->txt('save'));
143 }
144
145 protected function fillRow(array $a_set): void
146 {
147 $this->tpl->setVariable('VAL_ID', $a_set['usr_id']);
148 $this->tpl->setVariable('VAL_NAME', $a_set['lastname'] . ', ' . $a_set['firstname']);
149 $this->tpl->setVariable('SELECT_PARTICIPANT', $this->lng->txt("select") . ' ' . $a_set['lastname'] . ', ' . $a_set['firstname']);
150
151 if (
152 !$this->access->checkAccessOfUser($a_set['usr_id'], 'read', '', $this->getRepositoryObject()->getRefId()) &&
153 is_array($info = $this->access->getInfo())
154 ) {
155 $this->tpl->setCurrentBlock('access_warning');
156 $this->tpl->setVariable('PARENT_ACCESS', $info[0]['text']);
157 $this->tpl->parseCurrentBlock();
158 }
159
160 if (!$a_set['active']) {
161 $this->tpl->setCurrentBlock('access_warning');
162 $this->tpl->setVariable('PARENT_ACCESS', $this->lng->txt('usr_account_inactive'));
163 $this->tpl->parseCurrentBlock();
164 }
165
166 foreach ($this->getSelectedColumns() as $field) {
167 switch ($field) {
168 case 'gender':
169 $a_set['gender'] = ($a_set['gender'] ?? '') ? $this->lng->txt('gender_' . $a_set['gender']) : '';
170 $this->tpl->setCurrentBlock('custom_fields');
171 $this->tpl->setVariable('VAL_CUST', $a_set[$field]);
172 $this->tpl->parseCurrentBlock();
173 break;
174
175 case 'birthday':
176 $a_set['birthday'] = ($a_set['birthday'] ?? false) ? ilDatePresentation::formatDate(new ilDate(
177 $a_set['birthday'],
179 )) : $this->lng->txt('no_date');
180 $this->tpl->setCurrentBlock('custom_fields');
181 $this->tpl->setVariable('VAL_CUST', $a_set[$field]);
182 $this->tpl->parseCurrentBlock();
183 break;
184
185 case 'consultation_hour':
186 $this->tpl->setCurrentBlock('custom_fields');
187 $dts = array();
188 foreach ((array) ($a_set['consultation_hours'] ?? []) as $ch) {
190 new ilDateTime($ch['dt'], IL_CAL_UNIX),
191 new ilDateTime($ch['dtend'], IL_CAL_UNIX)
192 );
193 if ($ch['explanation']) {
194 $tmp .= ' ' . $ch['explanation'];
195 }
196 $dts[] = $tmp;
197 }
198 $dt_string = implode('<br />', $dts);
199 $this->tpl->setVariable('VAL_CUST', $dt_string);
200 $this->tpl->parseCurrentBlock();
201 break;
202
203 case 'prtf':
204 $tmp = array();
205 if (is_array($a_set['prtf'])) {
206 foreach ($a_set['prtf'] as $prtf_url => $prtf_txt) {
207 $tmp[] = '<a href="' . $prtf_url . '">' . $prtf_txt . '</a>';
208 }
209 }
210 $this->tpl->setCurrentBlock('custom_fields');
211 $this->tpl->setVariable('VAL_CUST', implode('<br />', $tmp));
212 $this->tpl->parseCurrentBlock();
213 break;
214
215 case 'odf_last_update':
216 $this->tpl->setCurrentBlock('custom_fields');
217 $this->tpl->setVariable('VAL_CUST', (string) ($a_set['odf_info_txt'] ?? ''));
218 $this->tpl->parseCurrentBlock();
219 break;
220
221 case 'roles':
222 $this->tpl->setCurrentBlock('custom_fields');
223 $this->tpl->setVariable('VAL_CUST', (string) ($a_set['roles_label'] ?? ''));
224 $this->tpl->parseCurrentBlock();
225 break;
226
227 case 'org_units':
228 $this->tpl->setCurrentBlock('custom_fields');
229 $this->tpl->setVariable(
230 'VAL_CUST',
231 ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits((int) $a_set['usr_id'])
232 );
233 $this->tpl->parseCurrentBlock();
234 break;
235
236 default:
237 $this->tpl->setCurrentBlock('custom_fields');
238 $this->tpl->setVariable('VAL_CUST', isset($a_set[$field]) ? (string) $a_set[$field] : '');
239 $this->tpl->parseCurrentBlock();
240 break;
241 }
242 }
243
244 if ($this->privacy->enabledCourseAccessTimes()) {
245 $this->tpl->setVariable('VAL_ACCESS', $a_set['access_time']);
246 }
247 if ($this->show_learning_progress) {
248 $this->tpl->setCurrentBlock('lp');
250 $icon_rendered = $icons->renderIconForStatus($icons->lookupNumStatus($a_set['progress']));
251
252 $this->tpl->setVariable('LP_STATUS_ALT', $this->lng->txt($a_set['progress']));
253 $this->tpl->setVariable('LP_STATUS_ICON', $icon_rendered);
254
255 $this->tpl->parseCurrentBlock();
256 }
257
258 $this->tpl->setVariable('VAL_POSTNAME', 'participants');
259
260 if ($this->access->checkAccess("grade", "", $this->rep_object->getRefId())) {
261 $this->tpl->setCurrentBlock('grade');
262 $this->tpl->setVariable('VAL_PASSED_ID', $a_set['usr_id']);
263 $this->tpl->setVariable('VAL_PASSED_CHECKED', ($a_set['passed'] ? 'checked="checked"' : ''));
264 $this->tpl->setVariable('PASSED_TITLE', $this->lng->txt('crs_member_passed'));
265 $this->tpl->parseCurrentBlock();
266 } else {
267 $this->tpl->setVariable('VAL_PASSED_TXT', ($a_set['passed']
268 ? $this->lng->txt("yes")
269 : $this->lng->txt("no")));
270 }
271
272 if (
273 $this->getParticipants()->isAdmin($a_set['usr_id']) ||
274 $this->getParticipants()->isTutor($a_set['usr_id'])
275 ) {
276 // cognos-blu-patch: begin
277 $this->tpl->setCurrentBlock('with_contact');
278 $this->tpl->setVariable('VAL_CONTACT_ID', $a_set['usr_id']);
279 $this->tpl->setVariable('VAL_CONTACT_CHECKED', $a_set['contact'] ? 'checked="checked"' : '');
280 $this->tpl->setVariable('CONTACT_TITLE', $this->lng->txt('crs_mem_contact'));
281 $this->tpl->parseCurrentBlock();
282 // cognos-blu-patch: end
283
284 $this->tpl->setCurrentBlock('with_notification');
285 $this->tpl->setVariable('VAL_NOTIFICATION_ID', $a_set['usr_id']);
286 $this->tpl->setVariable('VAL_NOTIFICATION_CHECKED', ($a_set['notification'] ? 'checked="checked"' : ''));
287 $this->tpl->setVariable('NOTIFICATION_TITLE', $this->lng->txt('crs_notification_list_title'));
288 $this->tpl->parseCurrentBlock();
289 }
290
291 // blocked only for real members
292 if (
293 !$this->getParticipants()->isAdmin($a_set['usr_id']) &&
294 !$this->getParticipants()->isTutor($a_set['usr_id'])
295 ) {
296 $this->tpl->setCurrentBlock('with_blocked');
297 $this->tpl->setVariable('VAL_BLOCKED_ID', $a_set['usr_id']);
298 $this->tpl->setVariable('VAL_BLOCKED_CHECKED', ($a_set['blocked'] ? 'checked="checked"' : ''));
299 $this->tpl->setVariable('BLOCKED_TITLE', $this->lng->txt('crs_blocked'));
300 $this->tpl->parseCurrentBlock();
301 }
302
303 if ($this->show_lp_status_sync) {
304 $this->tpl->setVariable('PASSED_INFO', $a_set["passed_info"]);
305 }
306
307 $this->showActionLinks($a_set);
308
309 $isPreloaded = $this->preLoader->isPreloaded($this->getRepositoryObject()->getId(), $a_set['usr_id']);
310 if ($isPreloaded) {
311 $this->tpl->setCurrentBlock('link');
312 $this->tpl->setVariable('LINK_NAME', $this->ctrl->getLinkTarget($this->parent_obj, 'deliverCertificate'));
313 $this->tpl->setVariable('LINK_TXT', $this->lng->txt('download_certificate'));
314 $this->tpl->parseCurrentBlock();
315 }
316 $this->ctrl->clearParameters($this->parent_obj);
317
318 if ($this->show_timings) {
319 $this->ctrl->setParameterByClass('ilcoursecontentgui', 'member_id', $a_set['usr_id']);
320 $this->tpl->setCurrentBlock('link');
321 $this->tpl->setVariable(
322 'LINK_NAME',
323 $this->ctrl->getLinkTargetByClass('ilcoursecontentgui', 'showUserTimings')
324 );
325 $this->tpl->setVariable('LINK_TXT', $this->lng->txt('timings_timings'));
326 $this->tpl->parseCurrentBlock();
327 }
328 }
329
330 public function parse(): void
331 {
332 $this->determineOffsetAndOrder(true);
333
334 $additional_fields = $this->getSelectedColumns();
335 unset($additional_fields["firstname"]);
336 unset($additional_fields["lastname"]);
337 unset($additional_fields["last_login"]);
338 unset($additional_fields["access_until"]);
339 unset($additional_fields['consultation_hour']);
340 unset($additional_fields['prtf']);
341 unset($additional_fields['roles']);
342 unset($additional_fields['org_units']);
343
344 $part = $this->participants->getParticipants();
345
346 $part = $this->access->filterUserIdsByRbacOrPositionOfCurrentUser(
347 'manage_members',
348 'manage_members',
349 $this->getRepositoryObject()->getRefId(),
350 $part
351 );
352
353 if ($part === []) {
354 $this->setData(array());
355 return;
356 }
357
358 $udf_ids = $usr_data_fields = $odf_ids = array();
359 foreach ($additional_fields as $field) {
360 if (substr($field, 0, 3) == 'udf') {
361 $udf_ids[] = substr($field, 4);
362 continue;
363 }
364 if (substr($field, 0, 3) == 'odf') {
365 $odf_ids[] = substr($field, 4);
366 continue;
367 }
368
369 $usr_data_fields[] = $field;
370 }
371
373 '',
374 '',
375 0,
376 9999,
377 $this->current_filter['login'],
378 '',
379 null,
380 false,
381 false,
382 0,
383 0,
384 null,
385 $usr_data_fields,
386 $part
387 );
388 // filter by array
389 $usr_ids = array();
390 $local_roles = $this->getParentObject()->getLocalRoles();
391 foreach ((array) $usr_data['set'] as $user) {
392 if ($this->current_filter['roles'] ?? false) {
393 if (!$this->rbacReview->isAssigned($user['usr_id'], $this->current_filter['roles'])) {
394 continue;
395 }
396 }
397 if ($this->current_filter['org_units'] ?? false) {
398 $org_unit = $this->current_filter['org_units'];
399
400 $assigned = ilObjOrgUnitTree::_getInstance()->getOrgUnitOfUser($user['usr_id']);
401 if (!in_array($org_unit, $assigned)) {
402 continue;
403 }
404 }
405
406 $usr_ids[] = $user['usr_id'];
407 }
408
409 // merge course data
410 $course_user_data = $this->getParentObject()->readMemberData(
411 $usr_ids,
412 $this->getSelectedColumns(),
413 true
414 );
415 $a_user_data = array();
416 foreach ((array) $usr_data['set'] as $ud) {
417 $user_id = (int) $ud['usr_id'];
418
419 if (!in_array($user_id, $usr_ids)) {
420 continue;
421 }
422 // #15434
423 if (!$this->checkAcceptance($user_id)) {
424 $ud = [
425 'active' => $ud['active'],
426 'firstname' => $ud['firstname'],
427 'lastname' => $ud['lastname'],
428 'login' => $ud['login']
429 ];
430 }
431
432 $a_user_data[$user_id] = array_merge($ud, $course_user_data[$user_id]);
433
434 $roles = array();
435 foreach ($local_roles as $role_id => $role_name) {
436 // @todo fix performance
437 if ($this->rbacReview->isAssigned($user_id, $role_id)) {
438 $roles[] = $role_name;
439 }
440 }
441
442 $a_user_data[$user_id]['name'] = ($a_user_data[$user_id]['lastname'] . ', ' . $a_user_data[$user_id]['firstname']);
443 $a_user_data[$user_id]['roles_label'] = implode('<br />', $roles);
444 $a_user_data[$user_id]['roles'] = $this->participants->setRoleOrderPosition($user_id);
445
446 if ($this->show_lp_status_sync) {
447 // #9912 / #13208
448 $passed_info = "";
449 $passed_timestamp = '';
450 if ($a_user_data[$user_id]["passed_info"]) {
451 $pinfo = $a_user_data[$user_id]["passed_info"];
452 if ($pinfo["user_id"]) {
453 if ($pinfo["user_id"] < 0) {
454 $passed_info = $this->lng->txt("crs_passed_status_system");
455 } elseif ($pinfo["user_id"] > 0) {
456 $name = $this->lookupUserName((int) $pinfo["user_id"]);
457 $passed_info = $this->lng->txt("crs_passed_status_manual_by") . ": " . $name["login"];
458 }
459 }
460 if ($pinfo["timestamp"]) {
461 $passed_info .= "<br />" . ilDatePresentation::formatDate($pinfo["timestamp"]);
462 $passed_timestamp = $pinfo["timestamp"];
463 }
464 }
465 $a_user_data[$user_id]["passed_info"] = $passed_info;
466 $a_user_data[$user_id]["passed_timestamp"] = $passed_timestamp;
467 }
468 }
469
470 // Custom user data fields
471 if ($udf_ids !== []) {
472 $a_user_data = array_reduce(
473 $this->profile->getDataForMultiple($usr_ids),
474 function (array $c, ProfileData $v): array {
475 if (!$this->checkAcceptance($v->getId())) {
476 return $c;
477 }
478
479 foreach ($udf_ids as $field_id) {
480 $c[$v->getId()]['udf_' . $field_id] = $v->getAdditionalFieldByIdentifier($field_id);
481 }
482 },
483 $a_user_data
484 );
485 }
486 // Object specific user data fields
487 if ($odf_ids !== []) {
489 foreach ($data as $usr_id => $fields) {
490 $usr_id = (int) $usr_id;
491 // #7264: as we get data for all course members filter against user data
492 if (!$this->checkAcceptance($usr_id) || !in_array($usr_id, $usr_ids)) {
493 continue;
494 }
495
496 foreach ($fields as $field_id => $value) {
497 $a_user_data[$usr_id]['odf_' . $field_id] = $value;
498 }
499 }
500
501 // add last edit date
502 foreach (ilObjectCustomUserFieldHistory::lookupEntriesByObjectId($this->getRepositoryObject()->getId()) as $usr_id => $edit_info) {
503 if (!isset($a_user_data[$usr_id])) {
504 continue;
505 }
506
507 if ($usr_id == $edit_info['update_user']) {
508 $a_user_data[$usr_id]['odf_last_update'] = '';
509 $a_user_data[$usr_id]['odf_info_txt'] = $this->lng->txt('cdf_edited_by_self');
510 if (ilPrivacySettings::getInstance()->enabledAccessTimesByType($this->getRepositoryObject()->getType())) {
511 $a_user_data[$usr_id]['odf_last_update'] .= ('_' . $edit_info['editing_time']->get(IL_CAL_UNIX));
512 $a_user_data[$usr_id]['odf_info_txt'] .= (', ' . ilDatePresentation::formatDate($edit_info['editing_time']));
513 }
514 } else {
515 $a_user_data[$usr_id]['odf_last_update'] = $edit_info['update_user'];
516 $a_user_data[$usr_id]['odf_last_update'] .= ('_' . $edit_info['editing_time']->get(IL_CAL_UNIX));
517
518 $name = $this->lookupUserName((int) $edit_info['update_user']);
519 $a_user_data[$usr_id]['odf_info_txt'] = ($name['firstname'] . ' ' . $name['lastname'] . ', ' . ilDatePresentation::formatDate($edit_info['editing_time']));
520 }
521 }
522 }
523
524 // consultation hours
525 if ($this->isColumnSelected('consultation_hour')) {
527 $this->getRepositoryObject()->getId(),
528 $this->user->getId()
529 ) as $buser => $booking) {
530 if (isset($a_user_data[$buser])) {
531 $a_user_data[$buser]['consultation_hour'] = $booking[0]['dt'];
532 $a_user_data[$buser]['consultation_hour_end'] = $booking[0]['dtend'];
533 $a_user_data[$buser]['consultation_hours'] = $booking;
534 }
535 }
536 }
537
538 // always sort by name first
539 $a_user_data = ilArrayUtil::sortArray(
540 $a_user_data,
541 'name',
542 $this->getOrderDirection()
543 );
544 $this->setData($a_user_data);
545 }
546
550 protected function lookupUserName(int $user_id): array
551 {
552 if (isset($this->cached_user_names[$user_id])) {
553 return $this->cached_user_names[$user_id];
554 }
555 return $this->cached_user_names[$user_id] = ilObjUser::_lookupName($user_id);
556 }
557}
const IL_CAL_DATE
const IL_CAL_UNIX
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
static lookupManagedBookingsForObject(int $a_obj_id, int $a_usr_id)
Lookup bookings for own and managed consultation hours of an object.
fillRow(array $a_set)
Standard Version of Fill Row.
__construct(object $a_parent_obj, ilObject $rep_object, bool $a_show_learning_progress=false, bool $a_show_timings=false, bool $a_show_lp_status_sync=false, ?ilCertificateUserForObjectPreloader $preloader=null)
ilCertificateUserForObjectPreloader $preLoader
static _getValuesByObjId(int $a_obj_id)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.
@classDescription Date and time handling
Class for single dates.
static getInstance(int $variant=ilLPStatusIcons::ICON_VARIANT_DEFAULT, ?\ILIAS\UI\Renderer $renderer=null, ?\ILIAS\UI\Factory $factory=null)
User class.
static _lookupName(int $a_user_id)
Class ilObject Basic functions for all objects.
getSelectableColumns()
Get selectable columns.
static getInstanceByObjId(int $a_obj_id)
Get instance by obj type.
Singleton class that stores all privacy settings.
class ilRbacReview Contains Review functions of core Rbac.
isColumnSelected(string $col)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
determineOffsetAndOrder(bool $a_omit_offset=false)
setEnableNumInfo(bool $a_val)
setExternalSegmentation(bool $a_val)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setEnableTitle(bool $a_enabletitle)
setFormName(string $a_name="")
addMultiCommand(string $a_cmd, string $a_text)
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)
setEnableHeader(bool $a_enableheader)
setDefaultOrderField(string $a_defaultorderfield)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setTopCommands(bool $a_val)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setId(string $a_val)
setData(array $a_data)
Set table data.
enable(string $a_module_name)
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.
$c
Definition: deliver.php:25
$info
Definition: entry_point.php:21
Interface ilAccessHandler This interface combines all available interfaces which can be called via gl...
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
global $DIC
Definition: shib_login.php:26