19 declare(strict_types=1);
44 $this->
user = $DIC->user();
51 $this->
lng->loadLanguageModule(
'grp');
52 $this->
lng->loadLanguageModule(
'crs');
53 $this->
lng->loadLanguageModule(
'sess');
54 $this->
lng->loadLanguageModule(
'ps');
62 $this->
addColumn($this->
lng->txt(
'name'),
'lastname',
'20%');
66 $this->
addColumn($all_cols[$col][
'txt'], $col);
69 $this->
addColumn($this->
lng->txt(
'application_date'),
'sub_time',
"10%");
74 $this->
addMultiCommand(
'sendMailToSelectedUsers', $this->
lng->txt(
'crs_mem_send_mail'));
79 $this->
lng->loadLanguageModule(
'user');
86 $this->
setRowTemplate(
"tpl.show_waiting_list_row.html",
"Services/Membership");
91 $this->
enable(
'select_all');
114 $this->wait_user_ids = $this->wait = [];
115 foreach ($a_user_ids as $usr_id) {
116 $this->wait_user_ids[] = $usr_id;
127 return parent::numericOrdering($a_field);
132 if (self::$all_columns) {
133 return self::$all_columns;
141 is_array(self::$all_columns) &&
142 array_key_exists(
'consultation_hour', self::$all_columns)
144 unset(self::$all_columns[
'consultation_hour']);
148 !is_array(self::$all_columns) ||
149 !array_key_exists(
'login', self::$all_columns)
151 self::$all_columns[
'login'] = [
153 'txt' => $this->
lng->txt(
'login')
156 return self::$all_columns;
159 protected function fillRow(array $a_set): void
166 $this->tpl->setVariable(
175 $this->tpl->setVariable(
'VAL_ID', $a_set[
'usr_id']);
176 $this->tpl->setVariable(
'VAL_NAME', $a_set[
'lastname'] .
', ' . $a_set[
'firstname']);
181 $a_set[
'gender'] = $a_set[
'gender'] ? $this->
lng->txt(
'gender_' . $a_set[
'gender']) :
'';
182 $this->tpl->setCurrentBlock(
'custom_fields');
183 $this->tpl->setVariable(
'VAL_CUST', $a_set[$field]);
184 $this->tpl->parseCurrentBlock();
191 )) : $this->
lng->txt(
'no_date');
192 $this->tpl->setCurrentBlock(
'custom_fields');
193 $this->tpl->setVariable(
'VAL_CUST', $a_set[$field]);
194 $this->tpl->parseCurrentBlock();
197 case 'odf_last_update':
198 $this->tpl->setVariable(
'VAL_CUST', (
string) ($a_set[
'odf_info_txt'] ??
''));
202 $this->tpl->setCurrentBlock(
'custom_fields');
203 $this->tpl->setVariable(
205 ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits((
int) $a_set[
'usr_id'])
207 $this->tpl->parseCurrentBlock();
211 $this->tpl->setCurrentBlock(
'custom_fields');
212 $this->tpl->setVariable(
'VAL_CUST', isset($a_set[$field]) ? (
string) $a_set[$field] :
'');
213 $this->tpl->parseCurrentBlock();
217 $this->tpl->setVariable(
230 $additional_fields[
"firstname"],
231 $additional_fields[
"lastname"],
232 $additional_fields[
"last_login"],
233 $additional_fields[
"access_until"],
234 $additional_fields[
'org_units']
237 $udf_ids = $usr_data_fields = $odf_ids = array();
238 foreach ($additional_fields as $field) {
239 if (strpos($field,
'udf') === 0) {
240 $udf_ids[] = substr($field, 4);
243 if (strpos($field,
'odf') === 0) {
244 $odf_ids[] = substr($field, 4);
248 $usr_data_fields[] = $field;
288 foreach ((array) $usr_data[
'set'] as $user) {
289 $usr_ids[] = (
int) $user[
'usr_id'];
293 $course_user_data = $this->
getParentObject()->readMemberData($usr_ids, array());
294 $a_user_data = array();
295 foreach ((array) $usr_data[
'set'] as $ud) {
296 $a_user_data[(
int) $ud[
'usr_id']] = array_merge($ud, $course_user_data[(
int) $ud[
'usr_id']]);
302 foreach (
$data as $usr_id => $fields) {
307 foreach ($fields as $field_id => $value) {
308 $a_user_data[$usr_id][
'udf_' . $field_id] = $value;
315 foreach (
$data as $usr_id => $fields) {
317 if (!$this->
checkAcceptance($usr_id) || !in_array($usr_id, $usr_ids)) {
321 foreach ($fields as $field_id => $value) {
322 $a_user_data[$usr_id][
'odf_' . $field_id] = $value;
328 if (!isset($a_user_data[$usr_id])) {
332 if ($usr_id == $edit_info[
'update_user']) {
333 $a_user_data[$usr_id][
'odf_last_update'] =
'';
334 $a_user_data[$usr_id][
'odf_info_txt'] =
$GLOBALS[
'DIC'][
'lng']->txt(
'cdf_edited_by_self');
336 $a_user_data[$usr_id][
'odf_last_update'] .= (
'_' . $edit_info[
'editing_time']->get(
IL_CAL_UNIX));
340 $a_user_data[$usr_id][
'odf_last_update'] = $edit_info[
'update_user'];
341 $a_user_data[$usr_id][
'odf_last_update'] .= (
'_' . $edit_info[
'editing_time']->get(
IL_CAL_UNIX));
349 foreach ($usr_data[
'set'] as $user) {
355 foreach ($usr_data_fields as $field) {
356 $a_user_data[(
int) $user[
'usr_id']][$field] = $user[$field] ?:
'';
361 foreach ($this->wait as $usr_id => $wait_usr_data) {
362 if (isset($a_user_data[$usr_id])) {
363 $a_user_data[$usr_id][
'sub_time'] = $wait_usr_data[
'time'];
373 if (!self::$has_odf_definitions) {
374 $this->
ctrl->setParameterByClass(get_class($this->
getParentObject()),
'member_id', $a_set[
'usr_id']);
375 $link = $this->
ctrl->getLinkTargetByClass(get_class($this->
getParentObject()),
'sendMailToSelectedUsers');
376 $this->tpl->setVariable(
'MAIL_LINK', $link);
377 $this->tpl->setVariable(
'MAIL_TITLE', $this->
lng->txt(
'crs_mem_send_mail'));
384 $list->setSelectionHeaderClass(
'small');
385 $list->setItemLinkClass(
'small');
386 $list->setId(
'actl_' . $a_set[
'usr_id'] .
'_' . $this->
getId());
387 $list->setListTitle($this->
lng->txt(
'actions'));
389 $this->
ctrl->setParameterByClass(get_class($this->
getParentObject()),
'member_id', $a_set[
'usr_id']);
390 $this->
ctrl->setParameter($this->parent_obj,
'member_id', $a_set[
'usr_id']);
392 $link = $this->
ctrl->getLinkTargetByClass(get_class($this->
getParentObject()),
'sendMailToSelectedUsers');
393 $list->addItem($trans,
'', $link,
'sendMailToSelectedUsers');
395 $this->
ctrl->setParameterByClass(
'ilobjectcustomuserfieldsgui',
'member_id', $a_set[
'usr_id']);
397 $list->addItem($trans,
'', $this->
ctrl->getLinkTargetByClass(
'ilobjectcustomuserfieldsgui',
'editMember'));
399 $this->tpl->setVariable(
'ACTION_USER', $list->getHTML());
static lookupData(array $a_user_ids, array $a_field_ids)
Lookup data.
enable(string $a_module_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setFormAction(string $a_form_action, bool $a_multipart=false)
ilWaitingList $waiting_list
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setUserIds(array $a_user_ids)
Set user ids.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static getAssignedObjects()
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
setFormName(string $a_name="")
static array $all_columns
resetOffset(bool $a_in_determination=false)
setExternalSorting(bool $a_val)
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
getExternalSegmentation()
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static bool $has_odf_definitions
__construct(object $a_parent_obj, ilObject $rep_object, ilWaitingList $waiting_list)
showActionLinks(array $a_set)
static _getInstanceByType(string $a_type)
Get Singleton Instance.
__construct(Container $dic, ilPlugin $plugin)
GUI class for course/group waiting list.
checkAcceptance(int $a_usr_id)
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 lookupEntriesByObjectId(int $a_obj_id)
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.
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)
numericOrdering(string $a_field)
setMaxCount(int $a_max_count)
set max.
setExternalSegmentation(bool $a_val)
setPrefix(string $a_prefix)