19 declare(strict_types=1);
30 private \ILIAS\DI\RBACServices
$rbac;
41 $this->
logger = $DIC->logger()->sess();
42 $this->tree = $DIC->repositoryTree();
43 $this->
rbac = $DIC->rbac();
45 $this->rep_object = $a_parent_obj;
52 $this->parent_ref_id = $this->tree->getParentId(
60 if ($member_ref = $this->tree->checkForParentType($this->parent_ref_id,
'grp')) {
61 $this->member_ref_id = $member_ref;
62 } elseif ($member_ref = $this->tree->checkForParentType($this->parent_ref_id,
'crs')) {
63 $this->member_ref_id = $member_ref;
65 throw new \InvalidArgumentException(
"Error in tree structure. Session has no parent course/group ref_id: " . $this->
getRepositoryObject()->getRefId());
84 public function init(): void
86 $this->
lng->loadLanguageModule(
'sess');
87 $this->
lng->loadLanguageModule(
'crs');
88 $this->
lng->loadLanguageModule(
'trac');
89 $this->
lng->loadLanguageModule(
'mmbr');
102 $this->
enable(
'select_all');
107 $this->
setRowTemplate(
"tpl.sess_members_row.html",
"components/ILIAS/Session");
110 $this->
addColumn($this->
lng->txt(
'name'),
'name',
'20%');
111 $this->
addColumn($this->
lng->txt(
'login'),
'login',
'10%');
115 $this->
addColumn($all_cols[$col][
'txt'], $col);
120 $this->
addColumn($this->
lng->txt(
'event_tbl_registered'),
'registered');
127 $this->
addColumn($this->
lng->txt(
'event_tbl_participated'),
'participated');
130 $this->
addColumn($this->
lng->txt(
'sess_part_table_excused'),
'excused');
133 $this->
addColumn($this->
lng->txt(
'sess_contact'),
'contact');
135 $this->
addColumn($this->
lng->txt(
'notification'),
'notification_checked');
139 $this->
addColumn($this->
lng->txt(
'trac_comment'),
'comment');
142 $this->
addMultiCommand(
'sendMailToSelectedUsers', $this->
lng->txt(
'mmbr_btn_mail_selected_users'));
143 $this->
lng->loadLanguageModule(
'user');
156 $this->
lng->txt(
'name')
158 $this->current_filter[
'login'] = $login->getValue();
170 $options[0] = $this->
lng->txt(
'all_roles');
172 $this->current_filter[
'roles'] = $role->getValue();
177 'filter_registration',
180 $this->
lng->txt(
'sess_part_filter_registered')
182 $this->current_filter[
'filter_registration'] = $reg->getChecked();
185 'filter_participated',
188 $this->
lng->txt(
'sess_part_filter_participated')
190 $this->current_filter[
'filter_participated'] = $participated->getChecked();
195 self::$all_columns[
'roles'] = array(
196 'txt' => $this->
lng->txt(
'objs_role'),
200 return self::$all_columns;
205 $all_participants = [];
207 if ($all_possible_participants !== []) {
210 $user_query->setLimit(50000);
211 $user_query->setUserFilter($all_possible_participants);
212 $user_query->setTextFilter((
string) $this->current_filter[
'login']);
213 $res = $user_query->query();
214 $all_participants =
$res[
'set'];
218 foreach ($all_participants as $counter => $participant) {
219 $usr_data = $this->
getParticipants()->getEventParticipants()->getUser((
int) $participant[
'usr_id']);
221 $tmp_data[
'id'] = $participant[
'usr_id'];
223 $tmp_data[
'name'] = $participant[
'lastname'];
224 $tmp_data[
'lastname'] = $participant[
'lastname'];
225 $tmp_data[
'firstname'] = $participant[
'firstname'];
226 $tmp_data[
'login'] = $participant[
'login'];
227 $tmp_data[
'mark'] = $usr_data[
'mark'] ??
null;
228 $tmp_data[
'comment'] = $usr_data[
'comment'] ??
null;
229 $tmp_data[
'participated'] = $this->
getParticipants()->getEventParticipants()->hasParticipated((
int) $participant[
'usr_id']);
230 $tmp_data[
'registered'] = $this->
getParticipants()->getEventParticipants()->isRegistered((
int) $participant[
'usr_id']);
231 $tmp_data[
'excused'] = $this->
getParticipants()->getEventParticipants()->isExcused((
int) $participant[
'usr_id']);
232 $tmp_data[
'contact'] = $this->
getParticipants()->isContact((
int) $participant[
'usr_id']);
234 $notificationShown =
false;
236 $notificationShown =
true;
237 $notificationCheckboxEnabled =
true;
239 $notificationCheckboxEnabled =
false;
241 $tmp_data[
'notification_checkbox_enabled'] = $notificationCheckboxEnabled;
242 $tmp_data[
'notification_checked'] = $usr_data[
'notification_enabled'] ??
false;
244 $tmp_data[
'show_notification'] = $notificationShown;
248 foreach ($local_roles as $role_id => $role_name) {
250 if ($this->
rbac->review()->isAssigned((
int) $participant[
'usr_id'], $role_id)) {
251 $tmp_data[
'role_ids'][] = $role_id;
252 $roles[] = $role_name;
255 $tmp_data[
'roles'] = implode(
'<br />', $roles);
270 ->getEventParticipants()
272 $direct_participants = array_keys($direct_participants);
276 return $direct_participants;
279 return array_unique(array_merge(
280 $direct_participants,
281 $part->getParticipants()
287 foreach ($this->current_filter as $filter => $filter_value) {
288 if (!$filter_value) {
293 if (!in_array($filter_value, ($a_user_info[
'role_ids'] ?? []))) {
298 case 'filter_participated':
299 if (!($a_user_info[
'participated'] ??
false)) {
304 case 'filter_registration':
305 if (!($a_user_info[
'registered'] ??
false)) {
314 protected function fillRow(array $a_set): void
316 $this->tpl->setVariable(
'VAL_POSTNAME',
'participants');
319 $this->tpl->setCurrentBlock(
'registered_col');
320 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
321 $this->tpl->setVariable(
'REG_CHECKED', $a_set[
'registered'] ?
'checked="checked"' :
'');
322 $this->tpl->parseCurrentBlock();
326 if ($field ==
'roles') {
327 $this->tpl->setCurrentBlock(
'custom_fields');
328 $this->tpl->setVariable(
'VAL_CUST', (
string) $a_set[
'roles']);
329 $this->tpl->parseCurrentBlock();
333 if (
true === $a_set[
'show_notification']) {
334 $this->tpl->setCurrentBlock(
'notification_column');
335 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
336 $this->tpl->setVariable(
'NOTIFICATION_CHECKED', $a_set[
'notification_checked'] ?
'checked="checked"' :
'');
338 $enableCheckbox = $a_set[
'notification_checkbox_enabled'];
340 $this->tpl->setVariable(
'NOTIFICATION_ENABLED', $enableCheckbox ?
'' :
'disabled');
341 $this->tpl->parseCurrentBlock();
344 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
345 $this->tpl->setVariable(
'LASTNAME', $a_set[
'lastname']);
346 $this->tpl->setVariable(
'FIRSTNAME', $a_set[
'firstname']);
347 $this->tpl->setVariable(
'LOGIN', $a_set[
'login']);
348 $this->tpl->setVariable(
'MARK', $a_set[
'mark']);
349 $this->tpl->setVariable(
'COMMENT', $a_set[
'comment']);
350 $this->tpl->setVariable(
'PART_CHECKED', $a_set[
'participated'] ?
'checked="checked"' :
'');
351 $this->tpl->setVariable(
'CONTACT_CHECKED', $a_set[
'contact'] ?
'checked="checked"' :
'');
352 $this->tpl->setVariable(
'PART_CHECKED', $a_set[
'participated'] ?
'checked="checked"' :
'');
354 $this->tpl->setVariable(
'EXCUSED_CHECKED', $a_set[
'excused'] ?
'checked="checked"' :
'');
373 $review = $this->
rbac->review();
374 $local_parent_roles = $review->getLocalRoles($this->member_ref_id);
375 $local_roles_info = [];
376 foreach ($local_parent_roles as $index => $role_id) {
381 return $local_roles_info;
matchesFilterCriteria(array $a_user_info)
ilParticipants $participants
const NOTIFICATION_INHERIT_OPTION
enable(string $a_module_name)
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
static array $all_columns
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static getInstance(int $a_ref_id)
setFormName(string $a_name="")
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
isColumnSelected(string $col)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
addFilterItemByMetaType(string $id, int $type=self::FILTER_TEXT, bool $a_optional=false, string $caption="")
Add filter by standard type.
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
ILIAS DI RBACServices $rbac
static _getTranslation(string $a_role_title)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
__construct(object $a_parent_gui, ilObjSession $a_parent_obj, string $a_parent_cmd)
Base class for course and group participants.
__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)
static _lookupType(int $id, bool $reference=false)
addMultiCommand(string $a_cmd, string $a_text)