39 int $a_mode = self::MODE_USER_FOLDER,
40 bool $a_load_items =
true 45 $ilCtrl = $DIC->ctrl();
46 $lng = $DIC->language();
49 $this->user_folder_id = $a_parent_obj->getObject()->getRefId();
51 if ($DIC[
'rbacsystem']->checkAccess(
'write', $this->user_folder_id)
52 || $DIC[
'rbacsystem']->checkAccess(
'cat_administrate_users', $this->user_folder_id)) {
53 $this->with_write_access =
true;
75 if ($this->
getMode() == self::MODE_LOCAL_USER) {
76 $this->
addColumn($this->
lng->txt(
'context'),
'time_limit_owner');
85 $this->
setFormAction($ilCtrl->getFormAction($this->parent_obj,
"applyFilter"));
97 $this->user_request = new \ILIAS\User\StandardGUIRequest(
102 if ($this->
getMode() == self::MODE_USER_FOLDER) {
105 $cmds = $a_parent_obj->getUserMultiCommands();
106 foreach ($cmds as $cmd => $caption) {
120 $this->mode = $a_mode;
139 foreach ($user_defined_fields->getDefinitions() as $field => $definition) {
140 if ($this->mode === self::MODE_LOCAL_USER
141 && $definition[
'visib_lua'] ===
'0') {
145 $this->udf_fields[
"udf_" . $field] = array(
146 "txt" => $definition[
"field_name"],
148 "options" => $definition[
"field_values"],
149 "type" => $definition[
"field_type"],
160 return $this->udf_fields[$a_key] ?? array();
165 if (strpos($a_key,
"udf_") === 0) {
178 $up->skipGroup(
"preferences");
179 $up->skipGroup(
"interests");
180 $up->skipGroup(
"settings");
186 $cols[
"firstname"] = array(
187 "txt" =>
$lng->
txt(
"firstname"),
189 $cols[
"lastname"] = array(
190 "txt" =>
$lng->
txt(
"lastname"),
192 if ($this->
getMode() == self::MODE_USER_FOLDER) {
193 $ufs = $up->getStandardFields();
195 $cols[
"access_until"] = array(
196 "txt" =>
$lng->
txt(
"access_until"),
198 $cols[
"last_login"] = array(
199 "txt" =>
$lng->
txt(
"last_login"),
203 $cols[
"create_date"] = array(
204 "txt" =>
$lng->
txt(
"create_date"));
205 $cols[
"approve_date"] = array(
206 "txt" =>
$lng->
txt(
"approve_date"));
207 $cols[
"agree_date"] = array(
208 "txt" =>
$lng->
txt(
"agree_date"));
210 $ufs = $up->getLocalUserAdministrationFields();
214 if (isset($ufs[
"email"])) {
215 $cols[
"email"] = array(
219 if (isset($ufs[
"second_email"])) {
220 $cols[
"second_email"] = array(
221 "txt" =>
$lng->
txt(
"second_email"),
225 foreach ($ufs as
$f => $fd) {
226 if (!isset($cols[
$f]) && (!isset($fd[
"lists_hide"]) || !$fd[
"lists_hide"])) {
228 $caption = $fd[
"lang_var"] ??
$f;
239 $cols[
"auth_mode"] = array(
240 "txt" =>
$lng->
txt(
"auth_mode"),
243 foreach ($this->udf_fields as $k => $field) {
248 unset($cols[
"username"]);
259 $query->setActionFilter($this->
filter[
'activation'] ??
'');
260 $query->setLastLogin($this->
filter[
'last_login'] ?? null);
261 $query->setLimitedAccessFilter($this->
filter[
'limited_access'] ??
false);
262 $query->setNoCourseFilter($this->
filter[
'no_courses'] ??
false);
263 $query->setNoGroupFilter($this->
filter[
'no_groups'] ??
false);
264 $query->setCourseGroupFilter($this->
filter[
'course_group'] ?? 0);
265 $query->setRoleFilter((
int) ($this->
filter[
'global_role'] ?? 0));
267 $query->setFirstLetterLastname($this->user_request->getLetter());
268 $query->setAuthenticationFilter($this->
filter[
'authentication'] ??
'');
279 if ($this->
getMode() == self::MODE_USER_FOLDER) {
283 if ($this->
filter[
'time_limit_owner'] ?? null) {
284 $user_filter = array($this->
filter[
'time_limit_owner']);
294 if (!count($user_filter)) {
300 if (isset($this->
filter[
'user_ids']) && is_array($this->
filter[
'user_ids']) && !count($this->
filter[
'user_ids'])) {
308 $additional_fields[
"firstname"],
309 $additional_fields[
"lastname"],
310 $additional_fields[
"email"],
311 $additional_fields[
"second_email"],
312 $additional_fields[
"last_login"],
313 $additional_fields[
"access_until"],
314 $additional_fields[
'org_units']
317 $udf_filter = array();
318 foreach ($this->
filter as $k => $v) {
319 if (strpos($k,
"udf_") === 0) {
320 $udf_filter[$k] = $v;
327 $query->setOrderField($order_field);
330 $query->setAdditionalFields($additional_fields);
331 $query->setUserFolder($user_filter);
332 $query->setUdfFilter($udf_filter);
333 $usr_data =
$query->query();
335 if (count($usr_data[
"set"]) == 0 && $this->
getOffset() > 0) {
338 $usr_data =
$query->query();
341 foreach ($usr_data[
"set"] as $k => $user) {
347 $current_time = time();
348 if ($user[
'active']) {
349 if ($user[
"time_limit_unlimited"]) {
350 $txt_access =
$lng->
txt(
"access_unlimited");
351 $usr_data[
"set"][$k][
"access_class"] =
"smallgreen";
352 } elseif ($user[
"time_limit_until"] < $current_time) {
353 $txt_access =
$lng->
txt(
"access_expired");
354 $usr_data[
"set"][$k][
"access_class"] =
"smallred";
357 $usr_data[
"set"][$k][
"access_class"] =
"small";
360 $txt_access =
$lng->
txt(
"inactive");
361 $usr_data[
"set"][$k][
"access_class"] =
"smallred";
363 $usr_data[
"set"][$k][
"access_until"] = $txt_access;
367 $this->
setData($usr_data[
"set"]);
377 if ($this->
getMode() == self::MODE_USER_FOLDER) {
381 if ($this->
filter[
'time_limit_owner']) {
382 $user_filter = array($this->
filter[
'time_limit_owner']);
389 if (!isset($this->
filter[
'user_ids'])) {
390 $this->
filter[
'user_ids'] = null;
394 $query->setUserFolder($user_filter);
399 $usr_data =
$query->query();
403 foreach ($usr_data[
"set"] as $item) {
406 $user_ids[] = $item[
"usr_id"];
417 $rbacreview = $DIC[
'rbacreview'];
419 $ilCtrl = $DIC[
'ilCtrl'];
423 if ($this->
getMode() == self::MODE_LOCAL_USER) {
426 if (count($parent_ids) > 1) {
431 $opt[0] = $this->
lng->txt(
'all_users');
434 foreach ($parent_ids as $parent_id) {
438 switch ($parent_id) {
448 $co->setOptions($opt);
450 $co->readFromSession();
451 $this->
filter[
'time_limit_owner'] = $co->getValue();
458 $ul->setDataSource($ilCtrl->getLinkTarget(
459 $this->getParentObject(),
460 "addUserAutoComplete",
465 $ul->setSubmitFormOnEnter(
true);
467 $ul->readFromSession();
468 $this->
filter[
"query"] = $ul->getValue();
474 "active" =>
$lng->
txt(
"active"),
475 "inactive" =>
$lng->
txt(
"inactive"),
478 $si->setOptions($options);
480 $si->readFromSession();
481 $this->
filter[
"activation"] = $si->getValue();
486 $cb->readFromSession();
487 $this->
filter[
"limited_access"] = $cb->getChecked();
495 $di->readFromSession();
496 $this->
filter[
"last_login"] = $di->getDate();
498 if ($this->
getMode() == self::MODE_USER_FOLDER) {
502 $cb->readFromSession();
503 $this->
filter[
"no_courses"] = $cb->getChecked();
508 $ng->readFromSession();
509 $this->
filter[
'no_groups'] = $ng->getChecked();
514 $rs->setHeaderMessage(
$lng->
txt(
"user_please_select_course_group"));
515 $rs->setClickableTypes(array(
"crs",
"grp"));
517 $rs->readFromSession();
518 $this->
filter[
"course_group"] = $rs->getValue();
525 foreach ($rbacreview->getRolesByFilter(2,
$ilUser->getId()) as $role) {
526 $options[$role[
"rol_id"]] = $role[
"title"];
529 $si->setOptions($options);
531 $si->readFromSession();
532 $this->
filter[
"global_role"] = $si->getValue();
539 foreach ($auth_methods as $method => $value) {
540 if ($method ==
'default') {
547 $si->setOptions($options);
549 $si->readFromSession();
550 $this->
filter[
"authentication"] = $si->getValue();
553 foreach ($this->udf_fields as
$id =>
$f) {
564 bool $a_optional =
false,
565 ?
string $caption = null,
566 array $a_options = array()
579 $sel_options = array(
"" => $this->
lng->txt(
"user_all"));
580 foreach ($a_options as $o) {
581 $sel_options[$o] = $o;
583 $item->setOptions($sel_options);
588 $item->setMaxLength(64);
599 $item->readFromSession();
605 protected function fillRow(array $a_set): void
609 $ilCtrl = $DIC[
'ilCtrl'];
612 $ilCtrl->setParameterByClass(
"ilobjusergui",
"letter", $this->user_request->getLetter());
615 if (
$c ==
"access_until") {
616 $this->tpl->setCurrentBlock(
"access_until");
617 $this->tpl->setVariable(
"VAL_ACCESS_UNTIL", $a_set[
"access_until"]);
618 $this->tpl->setVariable(
"CLASS_ACCESS_UNTIL", $a_set[
"access_class"]);
619 } elseif (
$c ==
"last_login") {
620 $this->tpl->setCurrentBlock(
"last_login");
621 $this->tpl->setVariable(
625 } elseif (in_array(
$c, array(
"firstname",
"lastname"))) {
626 $this->tpl->setCurrentBlock(
$c);
627 $this->tpl->setVariable(
"VAL_" . strtoupper(
$c), (
string) $a_set[
$c]);
628 } elseif (
$c ==
'auth_mode') {
629 $this->tpl->setCurrentBlock(
'user_field');
631 $this->tpl->parseCurrentBlock();
633 $this->tpl->setCurrentBlock(
"user_field");
634 $val = (trim($a_set[
$c]) ==
"")
637 if ($a_set[$c] !=
"") {
644 $val =
$lng->
txt(
"gender_" . $a_set[$c]);
655 $this->tpl->setVariable(
"VAL_UF", $val);
658 $this->tpl->parseCurrentBlock();
661 if ($a_set[
"usr_id"] != 6
662 && ($this->
getMode() == self::MODE_USER_FOLDER || $a_set[
'time_limit_owner'] == $this->
getUserFolderId())) {
663 $this->tpl->setCurrentBlock(
"checkb");
664 $this->tpl->setVariable(
"ID", $a_set[
"usr_id"]);
665 $this->tpl->parseCurrentBlock();
668 if ($this->with_write_access
669 && ($this->
getMode() == self::MODE_USER_FOLDER
671 $this->tpl->setVariable(
"VAL_LOGIN", $a_set[
"login"]);
672 $ilCtrl->setParameterByClass(
"ilobjusergui",
"obj_id", $a_set[
"usr_id"]);
673 $this->tpl->setVariable(
675 $ilCtrl->getLinkTargetByClass(
"ilobjusergui",
"view")
677 $ilCtrl->setParameterByClass(
"ilobjusergui",
"obj_id",
"");
679 $this->tpl->setVariable(
'VAL_LOGIN_PLAIN', $a_set[
'login']);
682 if ($this->
getMode() == self::MODE_LOCAL_USER) {
683 $this->tpl->setCurrentBlock(
'context');
684 $this->tpl->setVariable(
688 $this->tpl->parseCurrentBlock();
690 $this->tpl->setCurrentBlock(
'roles');
691 $ilCtrl->setParameter($this->
getParentObject(),
'obj_id', $a_set[
'usr_id']);
692 $this->tpl->setVariable(
'ROLE_LINK', $ilCtrl->getLinkTarget($this->getParentObject(),
'assignRoles'));
693 $this->tpl->setVariable(
'TXT_ROLES', $this->
lng->txt(
'edit'));
695 $this->tpl->parseCurrentBlock();
setTopCommands(bool $a_val)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAuthModeTranslation(string $a_auth_key, string $auth_name='')
static _getAuthMode(?string $a_auth_mode)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
setEnableTitle(bool $a_enabletitle)
addFilterItemValue($filter, $value)
getUserDefinedField(string $a_key)
Get user defined field.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static _getActiveAuthModes()
static lookupOrgUnitsRepresentation(int $a_usr_id)
lookup org unit representation
static _getAuthModeName($a_auth_key)
static _lookupObjId(int $ref_id)
isUdfColumn(string $a_key)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
resetOffset(bool $a_in_determination=false)
setExternalSorting(bool $a_val)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
readUserDefinedFieldsDefinitions()
Read user defined fields definitions.
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
const UDF_TYPE_TEXT
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setDefaultOrderDirection(string $a_defaultorderdirection)
setEnableAllCommand(bool $a_value)
ILIAS User StandardGUIRequest $user_request
addFilterItemByUdfType(string $id, int $type, bool $a_optional=false, ?string $caption=null, array $a_options=array())
Add filter by standard type.
__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 _getFolderIds(bool $access_with_orgunit=false)
__construct(?object $a_parent_obj, string $a_parent_cmd="", string $a_template_context="")
addMultiCommand(string $a_cmd, string $a_text)
determineOffsetAndOrder(bool $a_omit_offset=false)
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.
setExternalSegmentation(bool $a_val)