19 declare(strict_types=1);
43 bool $show_content =
true,
44 bool $show_subject =
true 51 $this->
renderer = $DIC->ui()->renderer();
52 $this->uiFactory = $DIC->ui()->factory();
54 $this->
lng->loadLanguageModule(
'grp');
55 $this->
lng->loadLanguageModule(
'crs');
61 $this->
addColumn($this->
lng->txt(
'name'),
'lastname',
'20%');
66 $all_cols[$col][
'txt'],
72 $this->
addColumn($this->
lng->txt(
'application_date'),
'sub_time');
73 $this->
addColumn($this->
lng->txt(
'message'),
'subject',
'40%');
75 $this->
addColumn($this->
lng->txt(
'application_date'),
'sub_time');
79 $this->
addMultiCommand(
'confirmAssignSubscribers', $this->
lng->txt(
'sess_accept_request'));
84 $this->
addMultiCommand(
'sendMailToSelectedUsers', $this->
lng->txt(
'crs_mem_send_mail'));
87 $this->
lng->loadLanguageModule(
'user');
93 $this->
setRowTemplate(
"tpl.show_subscribers_row.html",
"components/ILIAS/Membership");
99 $this->
enable(
'select_all');
119 if (self::$all_columns) {
120 return self::$all_columns;
124 self::$all_columns[
'login'] = [
125 'txt' => $this->
lng->txt(
'login'),
128 return self::$all_columns;
135 is_array(self::$all_columns) &&
136 array_key_exists(
'consultation_hour', self::$all_columns)
138 unset(self::$all_columns[
'consultation_hour']);
140 return self::$all_columns;
143 protected function fillRow(array $a_set): void
148 $this->tpl->setVariable(
156 $this->tpl->setVariable(
'VAL_ID', $a_set[
'usr_id']);
157 $this->tpl->setVariable(
'VAL_NAME', $a_set[
'lastname'] .
', ' . $a_set[
'firstname']);
162 $a_set[
'gender'] = $a_set[
'gender'] ? $this->
lng->txt(
'gender_' . $a_set[
'gender']) :
'';
163 $this->tpl->setCurrentBlock(
'custom_fields');
164 $this->tpl->setVariable(
'VAL_CUST', $a_set[$field]);
165 $this->tpl->parseCurrentBlock();
172 )) : $this->
lng->txt(
'no_date');
173 $this->tpl->setCurrentBlock(
'custom_fields');
174 $this->tpl->setVariable(
'VAL_CUST', $a_set[$field]);
175 $this->tpl->parseCurrentBlock();
178 case 'odf_last_update':
179 $this->tpl->setVariable(
'VAL_CUST', (
string) ($a_set[
'odf_info_txt'] ??
''));
183 $this->tpl->setCurrentBlock(
'custom_fields');
184 $this->tpl->setVariable(
186 ilOrgUnitPathStorage::getTextRepresentationOfUsersOrgUnits((
int) $a_set[
'usr_id'])
188 $this->tpl->parseCurrentBlock();
192 $this->tpl->setCurrentBlock(
'custom_fields');
193 $this->tpl->setVariable(
'VAL_CUST', isset($a_set[$field]) ? (
string) $a_set[$field] :
'');
194 $this->tpl->parseCurrentBlock();
199 $this->tpl->setVariable(
205 if (strlen($a_set[
'subject'])) {
206 $this->tpl->setCurrentBlock(
'subject');
207 $this->tpl->setVariable(
'VAL_SUBJECT',
'"' . $a_set[
'subject'] .
'"');
208 $this->tpl->parseCurrentBlock();
210 $this->tpl->touchBlock(
'subject');
220 $this->
ctrl->setParameterByClass(get_class($this->
getParentObject()),
'member_id', $a_set[
'usr_id']);
221 $this->
ctrl->setParameter($this->parent_obj,
'member_id', $a_set[
'usr_id']);
223 $dropDownItems = array();
224 $dropDownItems[] = $this->uiFactory->button()->shy(
225 $this->
lng->txt($this->getRepositoryObject()->getType() .
'_mem_send_mail'),
226 $this->
ctrl->getLinkTargetByClass(get_class($this->
getParentObject()),
'sendMailToSelectedUsers')
229 if (self::$has_odf_definitions) {
230 $this->
ctrl->setParameterByClass(
'ilobjectcustomuserfieldsgui',
'member_id', $a_set[
'usr_id']);
231 $dropDownItems[] = $this->uiFactory->button()->shy(
232 $this->
lng->txt($this->getRepositoryObject()->getType() .
'_cdf_edit_member'),
233 $this->
ctrl->getLinkTargetByClass(
'ilobjectcustomuserfieldsgui',
'editMember')
237 $dropDown = $this->uiFactory->dropdown()->standard($dropDownItems)
238 ->withLabel($this->
lng->txt(
'actions'));
239 $this->tpl->setVariable(
'ACTION_USER', $this->
renderer->render($dropDown));
251 $sub_ids = $sub_data = [];
252 foreach ($a_subscriber_ids as $usr_id) {
253 $sub_ids[] = $usr_id;
254 $sub_data[$usr_id] = $subscriber_data[$usr_id];
261 $additional_fields[
"firstname"],
262 $additional_fields[
"lastname"],
263 $additional_fields[
"last_login"],
264 $additional_fields[
"access_until"],
265 $additional_fields[
'org_units']
268 $udf_ids = $usr_data_fields = $odf_ids = array();
269 foreach ($additional_fields as $field) {
270 if (strpos($field,
'udf') === 0) {
271 $udf_ids[] = substr($field, 4);
274 if (strpos($field,
'odf') === 0) {
275 $odf_ids[] = substr($field, 4);
279 $usr_data_fields[] = $field;
300 foreach ((array) $usr_data[
'set'] as $user) {
301 $usr_ids[] = $user[
'usr_id'];
305 $course_user_data = $this->
getParentObject()->readMemberData($usr_ids, array());
306 $a_user_data = array();
307 foreach ((array) $usr_data[
'set'] as $ud) {
308 $a_user_data[$ud[
'usr_id']] = array_merge($ud, (array) $course_user_data[$ud[
'usr_id']]);
312 if (is_array($udf_ids)) {
314 foreach (
$data as $usr_id => $fields) {
319 foreach ($fields as $field_id => $value) {
320 $a_user_data[$usr_id][
'udf_' . $field_id] = $value;
325 if (is_array($odf_ids)) {
327 foreach (
$data as $usr_id => $fields) {
329 if (!$this->
checkAcceptance($usr_id) || !in_array($usr_id, $usr_ids)) {
333 foreach ($fields as $field_id => $value) {
334 $a_user_data[$usr_id][
'odf_' . $field_id] = $value;
340 if (!isset($a_user_data[$usr_id])) {
344 if ($usr_id == $edit_info[
'update_user']) {
345 $a_user_data[$usr_id][
'odf_last_update'] =
'';
346 $a_user_data[$usr_id][
'odf_info_txt'] =
$GLOBALS[
'DIC'][
'lng']->txt(
'cdf_edited_by_self');
348 $a_user_data[$usr_id][
'odf_last_update'] .= (
'_' . $edit_info[
'editing_time']->get(
IL_CAL_UNIX));
352 $a_user_data[$usr_id][
'odf_last_update'] = $edit_info[
'update_user'];
353 $a_user_data[$usr_id][
'odf_last_update'] .= (
'_' . $edit_info[
'editing_time']->get(
IL_CAL_UNIX));
356 $a_user_data[$usr_id][
'odf_info_txt'] = ($name[
'firstname'] .
' ' . $name[
'lastname'] .
', ' .
ilDatePresentation::formatDate($edit_info[
'editing_time']));
361 foreach ($usr_data[
'set'] as $user) {
367 foreach ($usr_data_fields as $field) {
368 $a_user_data[$user[
'usr_id']][$field] = $user[$field] ?:
'';
373 foreach ($sub_data as $usr_id => $usr_data) {
374 if (!in_array($usr_id, $usr_ids)) {
377 $a_user_data[$usr_id][
'sub_time'] = $usr_data[
'time'];
378 $a_user_data[$usr_id][
'subject'] = $usr_data[
'subject'];
392 $this->show_subject = $a_value;
static bool $has_odf_definitions
static lookupData(array $a_user_ids, array $a_field_ids)
Lookup data.
enable(string $a_module_name)
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=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 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
readSubscriberData(array $a_subscriber_ids)
read data protected
static lookupSubscribersData(int $a_obj_id)
__construct(object $a_parent_obj, ilObject $rep_object, bool $show_content=true, bool $show_subject=true)
static _lookupTitle(int $obj_id)
static array $all_columns
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
checkAcceptance(int $a_usr_id)
GUI class for course/group subscriptions.
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,)
showActionLinks(array $a_set)
Show action links (mail ; edit crs|grp data)
setShowSubject(bool $a_value)
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)
disable(string $a_module_name)
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)