19 declare(strict_types=1);
69 bool $a_call_by_reference =
false,
70 bool $a_prepare_output =
true 74 $this->
ctrl = $DIC[
'ilCtrl'];
75 $this->
tabs = $DIC[
'ilTabs'];
76 $this->
help = $DIC[
'ilHelp'];
77 $this->mail_sender_factory = $DIC->mail()->mime()->senderFactory();
81 $this->default_layout_and_style = $DIC[
'ilClientIniFile']->readVariable(
'layout',
'skin') .
82 ':' . $DIC[
'ilClientIniFile']->readVariable(
'layout',
'style');
88 $this->uploads = $DIC->upload();
89 $this->irss = $DIC->resourceStorage();
92 $this->
ctrl->saveParameter($this, [
'obj_id',
'letter']);
93 $this->
ctrl->setParameterByClass(
'ilobjuserfoldergui',
'letter', $this->requested_letter);
94 $this->
lng->loadLanguageModule(
'user');
101 $this->requested_letter = $this->user_request->
getLetter();
102 $this->requested_baseClass = $this->user_request->getBaseClass();
103 $this->requested_search = $this->user_request->getSearch();
104 $this->legal_documents = $DIC[
'legalDocuments'];
109 $next_class = $this->
ctrl->getNextClass($this);
110 $cmd = $this->
ctrl->getCmd();
114 switch ($next_class) {
115 case 'illearningprogressgui':
121 $this->
ctrl->forwardCommand($new_gui);
124 case 'ilobjectownershipmanagementgui':
126 $this->
ctrl->forwardCommand($gui);
130 if ($cmd ==
'' || $cmd ==
'view') {
141 if (strtolower(get_class($this->
object)) ==
'ilobjuser') {
142 $this->tpl->setTitle(
'[' . $this->
object->getLogin() .
'] ' . $this->
object->getTitle());
143 $this->tpl->setDescription($this->
object->getLongDescription());
144 $this->tpl->setTitleIcon(
146 $this->
lng->txt(
'obj_' . $this->object->getType())
149 parent::setTitleAndDescription();
157 if (strtolower($this->requested_baseClass) ==
'iladministrationgui') {
158 $this->
ctrl->redirectByClass(
'ilobjuserfoldergui',
'view');
160 $this->
ctrl->redirectByClass(
'ilobjcategorygui',
'listUsers');
171 $this->tabs_gui->clearTargets();
173 $this->
help->setScreenIdComponent(
'usr');
175 if ($this->requested_search) {
176 $this->tabs_gui->setBackTarget(
177 $this->
lng->txt(
'search_results'),
181 $this->tabs_gui->addTarget(
183 $this->
ctrl->getLinkTarget($this,
'edit'),
184 [
'edit',
'',
'view'],
190 $this->tabs_gui->addTarget(
192 $this->
ctrl->getLinkTarget($this,
'edit'),
193 [
'edit',
'',
'view'],
198 $this->tabs_gui->addTarget(
200 $this->
ctrl->getLinkTarget($this,
'roleassignment'),
206 if ($this->rbac_system->checkAccess(
'read', $this->ref_id) and
209 $this->tabs_gui->addTarget(
211 $this->
ctrl->getLinkTargetByClass(
'illearningprogressgui',
''),
213 [
'illplistofobjectsgui',
'illplistofsettingsgui',
'illearningprogressgui',
'illplistofprogressgui']
217 $this->tabs_gui->addTarget(
219 $this->
ctrl->getLinkTargetByClass(
'ilobjectownershipmanagementgui',
''),
221 'ilobjectownershipmanagementgui' 232 $this->back_target = [
'text' => $a_text,
'link' => $a_link];
239 $udfs = $this->user_request->getUDFs();
240 foreach ($this->user_defined_fields->getDefinitions() as $field_id => $definition) {
241 if ($definition[
'required'] and !strlen($udfs[$field_id])) {
250 $user_defined_data =
null;
253 if ($this->
object->getType() ==
'usr') {
254 $user_defined_data = $this->
object->getUserDefinedData();
256 foreach ($this->user_defined_fields->getDefinitions() as $field_id => $definition) {
258 $old = $error_post_vars[
'udf'][$field_id] ?? $user_defined_data[$field_id];
261 $this->tpl->setCurrentBlock(
'field_text');
262 $this->tpl->setVariable(
'FIELD_NAME',
'udf[' . $definition[
'field_id'] .
']');
265 $this->tpl->setCurrentBlock(
'field_select');
266 $this->tpl->setVariable(
270 'udf[' . $definition[
'field_id'] .
']',
271 $this->user_defined_fields->fieldValuesToSelectArray(
272 $definition[
'field_values']
279 $this->tpl->parseCurrentBlock();
280 $this->tpl->setCurrentBlock(
'user_defined');
282 if ($definition[
'required']) {
283 $name = $definition[
'field_name'] .
'<span class="asterisk">*</span>';
285 $name = $definition[
'field_name'];
287 $this->tpl->setVariable(
'TXT_FIELD_NAME', $name);
288 $this->tpl->parseCurrentBlock();
295 $this->tabs_gui->clearTargets();
299 $obj_list = $this->rbac_review->getRoleListByObject(
ROLE_FOLDER_ID);
301 foreach ($obj_list as $obj_data) {
305 $this->rbac_review->assignedRoles($this->user->getId())
316 $this->rbac_review->assignedRoles($this->user->getId())
318 $rol[$obj_data[
'obj_id']] = $obj_data[
'title'];
324 $this->
ilias->raiseError(
325 $this->
lng->txt(
'msg_no_roles_users_can_be_assigned_to'),
326 $this->
ilias->error_obj->MESSAGE
330 $keys = array_keys($rol);
333 if (in_array(4, $keys)) {
334 $this->default_role = 4;
336 if (count($keys) > 1 && in_array(2, $keys)) {
338 foreach ($keys as $key => $val) {
346 $this->default_role = array_shift($keys);
348 $this->selectable_roles = $rol;
356 if (!$this->rbac_system->checkAccess(
'create_usr', $this->usrf_ref_id)
357 && !$this->rbac_system->checkAccess(
'cat_administrate_users', $this->usrf_ref_id)) {
358 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
371 if (!$this->rbac_system->checkAccess(
'create_usr', $this->usrf_ref_id)
372 && !$this->
access->checkAccess(
'cat_administrate_users',
'', $this->usrf_ref_id)) {
373 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
380 $profile_maybe_incomplete =
false;
381 if ($this->form_gui->getInput(
'ignore_rf',
false)) {
385 if (!$this->form_gui->checkInput()) {
386 $this->form_gui->setValuesByPost();
394 || !in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->object->getId()))
395 || in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->user->getId()))) {
398 $user_object->setTitle($user_object->getFullname());
399 $user_object->setDescription($user_object->getEmail());
403 $user_object->create();
406 $user_object->setExternalAccount($this->form_gui->getInput(
'ext_account'));
411 $user_object->setLastPasswordChangeTS(time());
414 $user_object->saveAsNew();
418 $user_object->setLanguage($this->form_gui->getInput(
'language'));
423 $sknst = explode(
':', $this->form_gui->getInput(
'skin_style'));
425 if ($user_object->getPref(
'style') != $sknst[1] ||
426 $user_object->getPref(
'skin') != $sknst[0]) {
427 $user_object->setPref(
'skin', $sknst[0]);
428 $user_object->setPref(
'style', $sknst[1]);
432 $user_object->setPref(
'session_reminder_lead_time', (
string) $this->form_gui->getInput(
'session_reminder_lead_time'));
435 $user_object->setPref(
436 'hide_own_online_status',
437 $this->form_gui->getInput(
'hide_own_online_status')
441 $user_object->setPref(
442 'bs_allow_to_contact_me',
443 $this->form_gui->getInput(
'bs_allow_to_contact_me') ?
'y' :
'n' 447 $user_object->setPref(
448 'chat_osc_accept_msg',
449 $this->form_gui->getInput(
'chat_osc_accept_msg') ?
'y' :
'n' 453 $user_object->setPref(
454 'chat_broadcast_typing',
455 $this->form_gui->getInput(
'chat_broadcast_typing') ?
'y' :
'n' 458 $user_object->writePrefs();
461 $this->rbac_admin->assignUser(
462 (
int) $this->form_gui->getInput(
'default_role'),
463 $user_object->getId(),
467 $msg = $this->
lng->txt(
'user_added');
469 $this->
user->setPref(
471 ($this->form_gui->getInput(
'send_mail') ==
'y') ?
'y' :
'n' 473 $this->
user->writePrefs();
475 $this->
object = $user_object;
481 if ($profile_maybe_incomplete
482 && $this->user_profile->isProfileIncomplete($this->object)) {
483 $this->
object->setProfileIncomplete(
true);
484 $this->
object->update();
488 if ($this->form_gui->getInput(
'send_mail') ==
'y') {
490 $acc_mail->useLangVariablesAsFallback(
true);
491 $acc_mail->setAttachConfiguredFiles(
true);
492 $acc_mail->setUserPassword($this->form_gui->getInput(
'passwd'));
493 $acc_mail->setUser($user_object);
495 if ($acc_mail->send()) {
496 $msg .=
'<br />' . $this->
lng->txt(
'mail_sent');
497 $this->tpl->setOnScreenMessage(
'success', $msg,
true);
499 $msg .=
'<br />' . $this->
lng->txt(
'mail_not_sent');
500 $this->tpl->setOnScreenMessage(
'info', $msg,
true);
503 $this->tpl->setOnScreenMessage(
'success', $msg,
true);
506 if (strtolower($this->requested_baseClass) ==
'iladministrationgui') {
507 $this->
ctrl->redirectByClass(
'ilobjuserfoldergui',
'view');
511 $this->
ctrl->redirectByClass(
'ilobjcategorygui',
'listUsers');
519 $this->tabs_gui->clearTargets();
542 $from = $this->form_gui->getItemByPostVar(
'time_limit_from')->getDate();
547 $until = $this->form_gui->getItemByPostVar(
'time_limit_until')->getDate();
554 if ($a_mode ==
'create') {
558 $bd = $this->form_gui->getItemByPostVar(
'birthday');
559 $bd = $bd->getDate();
627 $general_interests = is_array($this->form_gui->getInput(
'interests_general'))
628 ? $this->form_gui->getInput(
'interests_general')
632 $offering_help = is_array($this->form_gui->getInput(
'interests_help_offered'))
633 ? $this->form_gui->getInput(
'interests_help_offered')
637 $looking_for_help = is_array($this->form_gui->getInput(
'interests_help_looking'))
638 ? $this->form_gui->getInput(
'interests_help_looking')
645 $zoom = (
int) $this->form_gui->getInput(
'loc_zoom');
674 foreach ($all_defs as $definition) {
675 $f =
"udf_" . $definition[
'field_id'];
676 $item = $this->form_gui->getItemByPostVar(
$f);
677 if ($item && !$item->getDisabled()) {
678 $udf[$definition[
'field_id']] = $this->form_gui->getInput(
$f);
690 $profile_maybe_incomplete =
false;
691 if ($this->form_gui->getInput(
'ignore_rf',
false)) {
695 if ($this->form_gui->checkInput()) {
700 ) && trim($this->form_gui->getInput(
'passwd')) !==
'' 702 || !in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->object->getId()))
703 || in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->user->getId())))
708 if ((
int) $this->form_gui->getInput(
'active') == 1) {
709 $this->
object->setLoginAttempts(0);
717 $this->
object->updateLogin($this->form_gui->getInput(
'login'));
719 $this->tpl->setOnScreenMessage(
'failure', $e->getMessage());
720 $this->form_gui->setValuesByPost();
725 $this->
object->setTitle($this->
object->getFullname());
726 $this->
object->setDescription($this->
object->getEmail());
729 $this->
object->setLanguage($this->form_gui->getInput(
'language'));
734 $sknst = explode(
':', $this->form_gui->getInput(
'skin_style'));
736 if ($this->
object->getPref(
'style') != $sknst[1] ||
737 $this->
object->getPref(
'skin') != $sknst[0]) {
738 $this->
object->setPref(
'skin', $sknst[0]);
739 $this->
object->setPref(
'style', $sknst[1]);
744 $this->
object->setPref(
'session_reminder_lead_time', (
string) $this->form_gui->getInput(
'session_reminder_lead_time'));
748 $this->
object->setPref(
749 'hide_own_online_status',
750 ($this->form_gui->getInput(
'hide_own_online_status') ??
'0')
754 $this->
object->setPref(
755 'bs_allow_to_contact_me',
756 ($this->form_gui->getInput(
'bs_allow_to_contact_me') ??
false) ?
'y' :
'n' 760 $this->
object->setPref(
761 'chat_osc_accept_msg',
762 ($this->form_gui->getInput(
'chat_osc_accept_msg') ??
false) ?
'y' :
'n' 766 $this->
object->setPref(
767 'chat_broadcast_typing',
768 ($this->form_gui->getInput(
'chat_broadcast_typing') ??
false) ?
'y' :
'n' 774 $this->
object->setLastPasswordChangeTS(time());
777 $this->
object->setProfileIncomplete(
false);
779 $this->update = $this->
object->update();
783 if ($this->
user->getId() == $this->
object->getId()) {
784 $this->
user->readPrefs();
786 $this->
user->setPref(
788 ($this->form_gui->getInput(
'send_mail') ===
'y') ?
'y' :
'n' 790 $this->
user->writePrefs();
793 $msg = $this->
lng->txt(
'saved_successfully') . $mail_message;
800 if ($profile_maybe_incomplete) {
803 if ($this->user_profile->isProfileIncomplete(
$user)) {
804 $this->
object->setProfileIncomplete(
true);
810 $this->tpl->setOnScreenMessage(
'success', $msg,
true);
812 if (strtolower($this->requested_baseClass) ==
'iladministrationgui') {
813 $this->
ctrl->redirectByClass(
'ilobjuserfoldergui',
'view');
815 $this->
ctrl->redirectByClass(
'ilobjcategorygui',
'listUsers');
818 $this->form_gui->setValuesByPost();
819 $this->tabs_gui->activateTab(
'properties');
820 $this->tpl->setContent($this->form_gui->getHtml());
829 $data[
'auth_mode'] = $this->
object->getAuthMode();
830 $data[
'login'] = $this->
object->getLogin();
831 $data[
'ext_account'] = $this->
object->getExternalAccount();
833 $this->
object->getCreateDate(),
837 $data[
'approve_date'] = ($this->
object->getApproveDate() !=
'')
841 $data[
'last_login'] = ($this->
object->getLastLogin() !=
'')
844 $data[
'active'] = $this->
object->getActive();
845 $data[
'time_limit_unlimited'] = $this->
object->getTimeLimitUnlimited() ?
'1' :
'0';
847 $data[
'time_limit_from'] = $this->
object->getTimeLimitFrom()
850 $data[
'time_limit_until'] = $this->
object->getTimeLimitUntil()
854 $data[
'gender'] = $this->
object->getGender();
855 $data[
'firstname'] = $this->
object->getFirstname();
856 $data[
'lastname'] = $this->
object->getLastname();
857 $data[
'title'] = $this->
object->getUTitle();
858 $data[
'birthday'] = $this->
object->getBirthday()
861 $data[
'institution'] = $this->
object->getInstitution();
862 $data[
'department'] = $this->
object->getDepartment();
863 $data[
'street'] = $this->
object->getStreet();
864 $data[
'city'] = $this->
object->getCity();
865 $data[
'zipcode'] = $this->
object->getZipcode();
866 $data[
'country'] = $this->
object->getCountry();
867 $data[
'sel_country'] = $this->
object->getSelectedCountry();
868 $data[
'phone_office'] = $this->
object->getPhoneOffice();
869 $data[
'phone_home'] = $this->
object->getPhoneHome();
870 $data[
'phone_mobile'] = $this->
object->getPhoneMobile();
871 $data[
'fax'] = $this->
object->getFax();
872 $data[
'email'] = $this->
object->getEmail();
873 $data[
'second_email'] = $this->
object->getSecondEmail();
874 $data[
'hobby'] = $this->
object->getHobby();
875 $data[
'referral_comment'] = $this->
object->getComment();
877 $data[
'interests_general'] = $this->
object->getGeneralInterests();
878 $data[
'interests_help_offered'] = $this->
object->getOfferingHelp();
879 $data[
'interests_help_looking'] = $this->
object->getLookingForHelp();
881 $data[
'matriculation'] = $this->
object->getMatriculation();
882 $data[
'client_ip'] = $this->
object->getClientIP();
885 $user_defined_data = $this->
object->getUserDefinedData();
886 foreach ($this->user_defined_fields->getDefinitions() as $field_id => $definition) {
887 $data[
'udf_' . $field_id] = $user_defined_data[
'f_' . $field_id] ??
'';
890 $data[
'language'] = $this->
object->getLanguage();
891 $data[
'skin_style'] = $this->
object->skin .
':' . $this->
object->prefs[
'style'];
892 $data[
'session_reminder_lead_time'] =
893 $this->
object->prefs[
'session_reminder_lead_time'] ??
895 $data[
'hide_own_online_status'] = $this->
object->prefs[
'hide_own_online_status'] ??
'';
896 $data[
'bs_allow_to_contact_me'] = ($this->
object->prefs[
'bs_allow_to_contact_me'] ??
'') ==
'y';
897 $data[
'chat_osc_accept_msg'] = ($this->
object->prefs[
'chat_osc_accept_msg'] ??
'') ==
'y';
898 $data[
'chat_broadcast_typing'] = ($this->
object->prefs[
'chat_broadcast_typing'] ??
'') ==
'y';
900 $data[
'send_mail'] = (($this->
object->prefs[
'send_info_mails'] ??
'') ==
'y');
902 $this->form_gui->setValuesByArray($data);
913 $this->form_gui->setFormAction($this->
ctrl->getFormAction($this));
914 if ($a_mode ==
'create') {
915 $this->form_gui->setTitle($this->
lng->txt(
'usr_new'));
917 $this->form_gui->setTitle($this->
lng->txt(
'usr_edit'));
922 $sec_l->setTitle($this->
lng->txt(
'login_data'));
923 $this->form_gui->addItem($sec_l);
929 foreach ($active_auth_modes as $auth_name => $auth_key) {
930 if ($auth_name ==
'default') {
935 $option[$auth_name] = $name;
938 $this->form_gui->addItem($am);
940 if ($a_mode ==
'edit') {
943 $this->form_gui->addItem(
$id);
948 if ($a_mode ==
'edit') {
949 $lo->setCurrentUserId($this->
object->getId());
954 $this->
lng->txt(
'usr_loginname_history_info'),
956 $last_history_entry[0]
963 $this->form_gui->addItem($lo);
966 || !in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->object->getId()))
967 || in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->user->getId()))) {
971 $pw->setMaxLength(80);
972 $pw->setValidateAuthPost(
'auth_mode');
973 if ($a_mode ==
'create') {
974 $pw->setRequiredOnAuth(
true);
977 && in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->object->getId()))
978 && !in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->user->getId()))) {
979 $pw->setDisabled(
true);
982 $this->form_gui->addItem($pw);
988 $ext->setMaxLength(250);
989 $ext->setInfo($this->
lng->txt(
'user_ext_account_desc'));
990 $this->form_gui->addItem($ext);
994 $sec_si->setTitle($this->
lng->txt(
'system_information'));
995 $this->form_gui->addItem($sec_si);
998 if ($a_mode ==
'edit') {
1000 'create_date' =>
'',
1001 'approve_date' =>
'',
1002 ...$this->legal_documents->userManagementFields($this->
object),
1006 foreach ($sia as
$a => $v) {
1007 if (is_string($v)) {
1009 $siai->setValue($v);
1010 $this->form_gui->addItem($siai);
1012 $this->form_gui->addItem($v);
1018 $ac->setChecked(
true);
1019 $this->form_gui->addItem($ac);
1021 $this->
lng->loadLanguageModule(
'crs');
1025 $radg->setRequired(
true);
1027 $radg->addOption($op1);
1029 $radg->addOption($op2);
1033 $acfrom->setShowTime(
true);
1034 $acfrom->setMinuteStepSize(1);
1035 $op2->addSubItem($acfrom);
1039 $acto->setShowTime(
true);
1040 $acto->setMinuteStepSize(1);
1041 $op2->addSubItem($acto);
1043 $this->form_gui->addItem($radg);
1053 $sec_pd->setTitle($this->
lng->txt(
'personal_data'));
1054 $this->form_gui->addItem($sec_pd);
1061 $gndr->addOption($neutral);
1063 $gndr->addOption($female);
1065 $gndr->addOption($male);
1066 $this->form_gui->addItem($gndr);
1070 'firstname' =>
true,
1074 foreach ($fields as $field =>
$req) {
1075 $max_len = $field ===
'title' ? 32 : 128;
1078 $caption = ($field ==
'title')
1083 $inp->setMaxLength($max_len);
1084 $inp->setRequired(
$req);
1085 $this->form_gui->addItem($inp);
1092 if ($a_mode ==
'edit' || $a_mode ==
'upload') {
1100 $this->form_gui->addItem($pi);
1106 $this->form_gui->addItem($birthday);
1112 [
'institution', 40, 80],
1113 [
'department', 40, 80],
1116 [
'zipcode', 10, 10],
1117 [
'country', 40, 40],
1119 [
'phone_office', 30, 30],
1120 [
'phone_home', 30, 30],
1121 [
'phone_mobile', 30, 30],
1126 foreach ($fields as $field) {
1130 $sec_cd->setTitle($this->
lng->txt(
'contact_data'));
1131 $this->form_gui->addItem($sec_cd);
1134 if ($a_mode ==
'edit') {
1136 $orgus->setValue($this->
object->getOrgUnitsRepresentation());
1137 $this->form_gui->addItem($orgus);
1141 if ($field[0] !=
'sel_country') {
1143 $inp->setSize($field[1]);
1144 $inp->setMaxLength($field[2]);
1145 $inp->setRequired(isset(
$settings[
'require_' . $field[0]]) &&
1147 $this->form_gui->addItem($inp);
1153 $this->form_gui->addItem($cs);
1161 $em->setMaxLength(128);
1162 $this->form_gui->addItem($em);
1168 $this->form_gui->addItem($em);
1175 $hob->setRequired(isset(
$settings[
'require_hobby']) &&
1177 $this->form_gui->addItem($hob);
1184 $rc->setRequired(isset(
$settings[
'require_referral_comment']) &&
1186 $this->form_gui->addItem($rc);
1190 $sh->setTitle($this->
lng->txt(
'interests'));
1191 $this->form_gui->addItem($sh);
1193 $multi_fields = [
'interests_general',
'interests_help_offered',
'interests_help_looking'];
1194 foreach ($multi_fields as $multi_field) {
1198 $ti->setMulti(
true);
1199 $ti->setMaxLength(40);
1201 $ti->setRequired(isset(
$settings[
'require_' . $multi_field]) &&
1203 $this->form_gui->addItem($ti);
1209 $sec_oi->setTitle($this->
lng->txt(
'user_profile_other'));
1210 $this->form_gui->addItem($sec_oi);
1216 $mr->setMaxLength(40);
1217 $mr->setRequired(isset(
$settings[
'require_matriculation']) &&
1219 $this->form_gui->addItem($mr);
1224 $ip->setMaxLength(255);
1225 $ip->setInfo($this->
lng->txt(
'current_ip') .
' ' .
$_SERVER[
'REMOTE_ADDR'] .
' <br />' .
1226 '<span class="warning">' . $this->
lng->txt(
'current_ip_alert') .
'</span>');
1227 $this->form_gui->addItem($ip);
1237 foreach ($all_defs as $definition) {
1240 $this->form_gui->addItem($f_property);
1244 if ($a_mode ==
'create' 1254 $sec_st->setTitle($this->
lng->txt(
'settings'));
1255 $this->form_gui->addItem($sec_st);
1258 if ($a_mode ==
'create') {
1260 $this->
lng->txt(
'default_role'),
1264 $role->setValue($this->default_role);
1265 $role->setOptions($this->selectable_roles);
1266 $this->form_gui->addItem($role);
1270 $languages = $this->
lng->getInstalledLanguages();
1271 $this->
lng->loadLanguageModule(
'meta');
1273 foreach ($languages as $l) {
1274 $options[$l] = $this->
lng->txt(
'meta_l_' . $l);
1277 $this->
lng->txt(
'language'),
1280 $lang->setOptions($options);
1282 if (count($options) <= 1) {
1283 $lang->setDisabled(
true);
1285 $this->form_gui->addItem(
$lang);
1290 $this->
lng->txt(
'skin_style'),
1294 $skins = ilStyleDefinition::getAllSkins();
1297 if (is_array($skins)) {
1301 foreach ($skins as $skin) {
1302 foreach ($skin->getStyles() as $style) {
1307 $options[$skin->getId() .
':' . $style->getId()] = $skin->getName() .
' / ' . $style->getName();
1312 $sk->setValue($this->default_layout_and_style);
1314 $this->form_gui->addItem($sk);
1318 $this->
lng->loadLanguageModule(
'awrn');
1320 $default = ($this->
settings->get(
'hide_own_online_status') ==
'n')
1321 ? $this->
lng->txt(
'user_awrn_show')
1322 : $this->
lng->txt(
'user_awrn_hide');
1325 '' => $this->
lng->txt(
'user_awrn_default') .
' (' . $default .
')',
1326 'n' => $this->
lng->txt(
'user_awrn_show'),
1327 'y' => $this->
lng->txt(
'user_awrn_hide')
1331 $os->setDisabled((
bool) $this->
settings->get(
'usr_settings_disable_hide_own_online_status'));
1332 $os->setInfo($this->
lng->txt(
'awrn_hide_from_awareness_info'));
1333 $this->form_gui->addItem($os);
1337 $this->
lng->loadLanguageModule(
'buddysystem');
1338 $os =
new ilCheckboxInputGUI($this->
lng->txt(
'buddy_allow_to_contact_me'),
'bs_allow_to_contact_me');
1339 if ($a_mode ==
'create') {
1342 $this->form_gui->addItem($os);
1345 $this->
lng->loadLanguageModule(
'chatroom');
1346 $chat_osc_acm =
new ilCheckboxInputGUI($this->
lng->txt(
'chat_osc_accept_msg'),
'chat_osc_accept_msg');
1347 if ($a_mode ==
'create') {
1350 $this->form_gui->addItem($chat_osc_acm);
1355 $this->
lng->txt(
'session_reminder_input'),
1356 'session_reminder_lead_time' 1360 $session_reminder->setInfo(
1362 $this->
lng->txt(
'session_reminder_lead_time_info'),
1368 $session_reminder->setValue(
1369 (
string) $session_reminder_object->getGlobalSessionReminderLeadTime()
1371 $session_reminder->setSize(3);
1373 $session_reminder->setMaxValue($session_reminder_object->getMaxPossibleLeadTime());
1374 $this->form_gui->addItem($session_reminder);
1379 $sec_op->setTitle($this->
lng->txt(
'options'));
1380 $this->form_gui->addItem($sec_op);
1384 $se->setInfo($this->
lng->txt(
'inform_user_mail_info'));
1386 $se->setChecked(($this->
user->getPref(
'send_info_mails') ==
'y'));
1387 $this->form_gui->addItem($se);
1390 $irf->setInfo($this->
lng->txt(
'ignore_required_fields_info'));
1391 $irf->setValue(
'1');
1392 $this->form_gui->addItem($irf);
1394 if ($a_mode ==
'create' || $a_mode ==
'save') {
1395 $this->form_gui->addCommandButton(
'save', $this->
lng->txt(
'save'));
1397 if ($a_mode ==
'edit' || $a_mode ==
'update') {
1398 $this->form_gui->addCommandButton(
'update', $this->
lng->txt(
'save'));
1400 $this->form_gui->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
1414 return (
bool) (
$settings[
'usr_settings_changeable_lua_' . $a_field] ??
false);
1423 $userfile_input = $this->form_gui->getItemByPostVar(
'userfile');
1424 if ($_FILES[
'userfile'][
'tmp_name'] ==
'') {
1425 if ($userfile_input->getDeletionFlag()) {
1426 $this->
object->removeUserPicture();
1430 if ($_FILES[
'userfile'][
'size'] == 0) {
1431 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_file'));
1433 $store_file =
'usr_' . $this->
object->getId() .
'.' .
'jpg';
1437 if ($rid ===
null) {
1441 $this->
object->setAvatarRid($rid->serialize());
1444 $this->
object->setPref(
'profile_image', $store_file);
1445 $this->
object->update();
1452 $upload_tmp_name = $_FILES[
'userfile'][
'tmp_name'];
1453 $avatar_upload_result = $uploads[$upload_tmp_name] ??
null;
1455 $existing_rid =
null;
1456 if ($this->
object->getAvatarRid() !==
null) {
1457 $existing_rid = $this->irss->manage()->find($this->
object->getAvatarRid());
1460 $revision_title =
'Avatar for user ' . $this->
object->getLogin();
1461 $this->stakeholder->setOwner($this->
object->getId());
1463 if ($avatar_upload_result === null && file_exists($upload_tmp_name)) {
1464 $stream = Streams::ofResource(
1465 fopen($upload_tmp_name,
'r')
1468 if ($existing_rid === null) {
1469 return $this->irss->manage()->stream($stream, $this->stakeholder, $revision_title);
1472 $this->irss->manage()->appendNewRevisionFromStream(
1478 return $existing_rid;
1481 if ($avatar_upload_result === null) {
1485 if ($existing_rid === null) {
1486 return $this->irss->manage()->upload(
1487 $avatar_upload_result,
1493 $this->irss->manage()->replaceWithUpload(
1495 $avatar_upload_result,
1499 return $existing_rid;
1505 $image_dir = $webspace_dir .
'/usr_images';
1506 $file = $image_dir .
'/usr_' . $this->
object->getId() .
'.' .
'jpg';
1507 $thumb_file = $image_dir .
'/usr_' . $this->
object->getId() .
'_small.jpg';
1508 $xthumb_file = $image_dir .
'/usr_' . $this->
object->getId() .
'_xsmall.jpg';
1509 $xxthumb_file = $image_dir .
'/usr_' . $this->
object->getId() .
'_xxsmall.jpg';
1510 $upload_file = $image_dir .
'/upload_' . $this->
object->getId();
1513 $this->
object->setPref(
'profile_image',
'');
1514 $this->
object->update();
1515 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'user_image_removed'));
1517 if (is_file($file)) {
1520 if (is_file($thumb_file)) {
1521 unlink($thumb_file);
1523 if (is_file($xthumb_file)) {
1524 unlink($xthumb_file);
1526 if (is_file($xxthumb_file)) {
1527 unlink($xxthumb_file);
1529 if (is_file($upload_file)) {
1530 unlink($upload_file);
1538 if (!$this->rbac_system->checkAccess(
'edit_roleassignment', $this->usrf_ref_id)) {
1539 $this->
ilias->raiseError(
1540 $this->
lng->txt(
'msg_no_perm_assign_role_to_user'),
1541 $this->
ilias->error_obj->MESSAGE
1545 $selected_roles = $this->user_request->getRoleIds();
1546 $posted_roles = $this->user_request->getPostedRoleIds();
1553 $global_roles_all = $this->rbac_review->getGlobalRoles();
1554 $assigned_roles_all = $this->rbac_review->assignedRoles($this->
object->getId());
1555 $assigned_roles = array_intersect($assigned_roles_all, $posted_roles);
1556 $assigned_global_roles_all = array_intersect($assigned_roles_all, $global_roles_all);
1557 $assigned_global_roles = array_intersect($assigned_global_roles_all, $posted_roles);
1559 $user_not_allowed_to_change_admin_role_assginements =
1560 !in_array(
SYSTEM_ROLE_ID, $this->rbac_review->assignedRoles($this->user->getId()));
1562 if ($user_not_allowed_to_change_admin_role_assginements
1567 $posted_global_roles = array_intersect($selected_roles, $global_roles_all);
1569 if (empty($selected_roles) && count($assigned_roles_all) === count($assigned_roles)
1570 || empty($posted_global_roles) && count($assigned_global_roles_all) === count($assigned_global_roles)) {
1571 $this->tpl->setOnScreenMessage(
1573 $this->
lng->txt(
'msg_min_one_role') .
'<br/>' . $this->
lng->txt(
'action_aborted'),
1576 $this->
ctrl->redirect($this,
'roleassignment');
1579 foreach (array_diff($assigned_roles, $selected_roles) as $role) {
1581 || $user_not_allowed_to_change_admin_role_assginements && $role ===
SYSTEM_ROLE_ID) {
1584 $this->rbac_admin->deassignUser($role, $this->
object->getId());
1587 foreach (array_diff($selected_roles, $assigned_roles) as $role) {
1589 || $user_not_allowed_to_change_admin_role_assginements && $role ===
SYSTEM_ROLE_ID) {
1592 $this->rbac_admin->assignUser($role, $this->
object->getId(),
false);
1595 $this->
object->update();
1597 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_roleassignment_changed'),
true);
1599 if (strtolower($this->requested_baseClass) ==
'iladministrationgui') {
1600 $this->
ctrl->redirect($this,
'roleassignment');
1602 $this->
ctrl->redirectByClass(
'ilobjcategorygui',
'listUsers');
1608 $this->
tabs->activateTab(
'role_assignment');
1611 || !$this->rbac_system->checkAccess(
'edit_roleassignment', $this->usrf_ref_id)
1612 && !$this->
access->isCurrentUserBasedOnPositionsAllowedTo(
'read_users', [$this->
object->getId()])
1614 $this->
ilias->raiseError(
1615 $this->
lng->txt(
'msg_no_perm_assign_role_to_user'),
1616 $this->
ilias->error_obj->MESSAGE
1621 $req_filtered_roles = $this->user_request->getFilteredRoles();
1624 ($req_filtered_roles > 0) ? $req_filtered_roles : $filtered_roles
1628 if ($filtered_roles > 5) {
1632 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.usr_role_assignment.html',
'components/ILIAS/User');
1637 $tab->parse($this->
object->getId());
1638 $this->tpl->setVariable(
'ROLES_TABLE', $tab->getHTML());
1644 $table_gui->writeFilterToSession();
1645 $table_gui->resetOffset();
1652 $table_gui->resetOffset();
1653 $table_gui->resetFilter();
1665 for ($i = 0; $i <= 60; $i++) {
1666 $days[$i] = $i < 10 ?
'0' . $i : $i;
1671 for ($i = 0; $i < 24; $i++) {
1672 $days[$i] = $i < 10 ?
'0' . $i : $i;
1677 for ($i = 1; $i < 32; $i++) {
1678 $days[$i] = $i < 10 ?
'0' . $i : $i;
1683 for ($i = 1; $i < 13; $i++) {
1684 $month[$i] = $i < 10 ?
'0' . $i : $i;
1689 if ($a_selected < date(
'Y')) {
1690 $start = $a_selected;
1695 for ($i = $start; $i < ((
int) date(
'Y') + 11); ++$i) {
1706 $a_time_arr[
'hour'],
1707 $a_time_arr[
'minute'],
1708 $a_time_arr[
'second'],
1709 $a_time_arr[
'month'],
1722 $action[0] = $this->
lng->txt(
'assigned_roles');
1723 $action[1] = $this->
lng->txt(
'all_roles');
1724 $action[2] = $this->
lng->txt(
'all_global_roles');
1725 $action[3] = $this->
lng->txt(
'all_local_roles');
1726 $action[4] = $this->
lng->txt(
'internal_local_roles_only');
1727 $action[5] = $this->
lng->txt(
'non_internal_local_roles_only');
1746 if ($this->admin_mode ==
'settings') {
1747 $this->
ctrl->setParameterByClass(
1748 'ilobjsystemfoldergui',
1753 $this->
lng->txt(
'administration'),
1754 $this->
ctrl->getLinkTargetByClass([
'iladministrationgui',
'ilobjsystemfoldergui'],
''),
1763 $this->
ctrl->getLinkTargetByClass(
'ilobjuserfoldergui',
'view')
1770 $this->
ctrl->getLinkTargetByClass(
'ilobjrolefoldergui',
'view')
1774 if ($this->obj_id > 0) {
1776 $this->
object->getTitle(),
1777 $this->
ctrl->getLinkTarget($this,
'view')
1785 if ($this->user_request->getSendMail() !=
'y') {
1788 if (!strlen($this->
object->getEmail())) {
1793 $usr_lang->loadLanguageModule(
'crs');
1794 $usr_lang->loadLanguageModule(
'registration');
1797 $mmail->From($this->mail_sender_factory->system());
1800 $mmail->To($mailOptions->getExternalEmailAddresses());
1802 $subject = $usr_lang->txt(
'profile_changed');
1803 $body = $usr_lang->txt(
'reg_mail_body_salutation')
1804 .
' ' . $this->
object->getFullname() .
",\n\n";
1806 $date = $this->
object->getApproveDate();
1808 if ($date !==
null && (time() - strtotime($date)) < 10) {
1809 $body .= $usr_lang->txt(
'reg_mail_body_approve') .
"\n\n";
1811 $body .= $usr_lang->txt(
'reg_mail_body_profile_changed') .
"\n\n";
1815 if ($this->user_request->getPassword() !=
'') {
1816 $body .= $usr_lang->txt(
'reg_mail_body_text2') .
"\n" .
1817 ILIAS_HTTP_PATH .
'/login.php?client_id=' . $this->
ilias->client_id .
"\n" .
1818 $usr_lang->txt(
'login') .
': ' . $this->
object->getLogin() .
"\n" .
1819 $usr_lang->txt(
'passwd') .
': ' . $this->user_request->getPassword() .
"\n\n";
1821 $body .= $usr_lang->txt(
'reg_mail_body_text3') .
"\n";
1822 $body .= $this->
object->getProfileAsString($usr_lang);
1826 $mmail->Subject($subject,
true);
1827 $mmail->Body($body);
1830 return '<br/>' . $this->
lng->txt(
'mail_sent');
1836 public static function _goto(
string $a_target):
void 1840 $ilUser = $DIC[
'ilUser'];
1843 $ilCtrl = $DIC[
'ilCtrl'];
1846 if ($a_target == md5(
'usrdelown')) {
1848 $ilUser->hasDeletionFlag()) {
1849 $ilCtrl->setTargetScript(
'ilias.php');
1850 $ilCtrl->redirectByClass([
'ildashboardgui',
'ilpersonalsettingsgui'],
'deleteOwnAccountStep2');
1852 exit(
'This account is not flagged for deletion.');
1856 if (substr($a_target, -4) ==
'_bdg') {
1857 $ilCtrl->redirectByClass(
'ilDashboardGUI',
'jumpToBadges');
1860 if (
'registration' == $a_target) {
1861 $ilCtrl->redirectByClass([
'ilStartUpGUI',
'ilAccountRegistrationGUI'],
'');
1862 } elseif (
'nameassist' == $a_target) {
1863 $ilCtrl->redirectByClass([
'ilStartUpGUI',
'ilPasswordAssistanceGUI'],
'showUsernameAssistanceForm');
1864 } elseif (
'pwassist' == $a_target) {
1865 $ilCtrl->redirectByClass([
'ilStartUpGUI',
'ilPasswordAssistanceGUI'],
'');
1867 $target = $DIC[
'legalDocuments']->findGotoLink($a_target);
1868 if ($target->isOK()) {
1869 $ilCtrl->setTargetScript(
'ilias.php');
1870 foreach ($target->value()->queryParams() as $key => $value) {
1871 $ilCtrl->setParameterByClass($target->value()->guiName(), (string) $key, $value);
1873 $ilCtrl->redirectByClass($target->value()->guiPath(), $target->value()->command());
1877 if (strpos($a_target,
'n') === 0) {
1882 if (strpos($a_target,
'contact_approved') !==
false) {
1883 $cmd =
'approveContactRequest';
1884 } elseif (strpos($a_target,
'contact_ignored') !==
false) {
1885 $cmd =
'ignoreContactRequest';
1888 $ilCtrl->setParameterByClass(
'ilpublicuserprofilegui',
'user_id', (
int) $a_target);
1889 $ilCtrl->redirectByClass([
'ilPublicUserProfileGUI'], $cmd);
1898 $profile_maybe_incomplete =
false;
1900 foreach ($this->user_profile->getIgnorableRequiredSettings() as $fieldName) {
1901 $elm = $this->form_gui->getItemByPostVar($fieldName);
1907 if ($elm->getRequired()) {
1908 $profile_maybe_incomplete =
true;
1911 $elm->setRequired(
false);
1916 foreach ($user_defined_fields->
getDefinitions() as $definition) {
1917 $elm = $this->form_gui->getItemByPostVar(
'udf_' . $definition[
'field_id']);
1923 if ($elm->getRequired() && $definition[
'required']) {
1924 $profile_maybe_incomplete =
true;
1927 $elm->setRequired(
false);
1931 return $profile_maybe_incomplete;
1938 !$this->rbac_system->checkAccess(
'visible,read', $this->usrf_ref_id)
1939 || !$this->rbac_system->checkAccess(
'write', $this->usrf_ref_id)
1945 $this->
access->filterUserIdsByPositionOfCurrentUser(
1954 $this->
ilias->raiseError($this->
lng->txt(
'msg_no_perm_modify_user'), $this->
ilias->error_obj->MESSAGE);
1960 && !$this->rbac_system->checkAccess(
'cat_administrate_users', $this->object->getTimeLimitOwner())) {
1961 $this->
ilias->raiseError($this->
lng->txt(
'msg_no_perm_modify_user'), $this->
ilias->error_obj->MESSAGE);
1967 $this->tpl->setContent($this->legal_documents->userManagementModals() . $this->form_gui->getHTML());
__showUserDefinedFields()
static getWebspaceDir(string $mode="filesystem")
get webspace directory
setUTitle(string $a_str)
set user title (note: don't mix up this method with setTitle() that is derived from ilObject and sets...
string $default_layout_and_style
static get(string $a_var)
ilMailMimeSenderFactory $mail_sender_factory
setTimeLimitUnlimited(bool $a_unlimited)
This class represents an option in a radio group.
setClientIP(string $a_str)
ilUserDefinedFields $user_defined_fields
createObject()
Display user create form.
static getAuthModeTranslation(string $a_auth_key, string $auth_name='')
static _getAuthMode(?string $a_auth_mode)
string $requested_baseClass
static _lookupActivatedStyle(string $a_skin, string $a_style)
lookup if a style is activated
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
UserGUIRequest $user_request
handleIgnoredRequiredFields()
Handles ignored required fields by changing the required flag of form elements.
setMatriculation(string $a_str)
Additional user data fields definition.
prepareOutput(bool $show_sub_objects=true)
setPhoneOffice(string $a_str)
removeUserPictureObject()
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
setSelectedCountry(string $a_val)
Set selected country (selection drop down)
setFullname()
builds a string with title + firstname + lastname method is used to build fullname in member variable...
loadUserDefinedDataFromForm(?ilObjUser $user=null)
initForm(string $a_mode)
Init user form.
static _lookupId($a_user_str)
addAdminLocatorItems(bool $do_not_add_object=false)
should be overwritten to add object specific items (repository items are preloaded) ...
static _getActiveAuthModes()
__unsetSessionVariables()
Class ilObjectOwnershipManagementGUI.
setTimeLimitUntil(?int $a_until)
static _getAuthModeName($a_auth_key)
const LP_CONTEXT_USER_FOLDER
static secondsToString(int $seconds, bool $force_with_seconds=false, ?ilLanguage $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
isSettingChangeable(string $a_field)
uploadUserPicture()
upload user image (original method by ratana ty)
setInstitution(string $a_str)
setBackTarget(string $a_text, string $a_link)
set back tab target
setLatitude(?string $a_latitude)
setComment(string $a_str)
static _allowPasswordModificationByAuthMode($a_auth_mode)
Allow password modification.
static _lookupObjId(int $ref_id)
setExternalAccount(string $a_str)
catch(\Exception $e) $req
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setBirthday(?string $a_birthday)
static _getLastHistoryDataByUserId(int $a_usr_id)
Returns the last used loginname and the changedate of the passed user_id.
static _enabledUserRelatedData()
setActive(bool $a_active, int $a_owner=0)
set user active state and updates system fields appropriately
static _enabledLearningProgress()
__checkUserDefinedRequiredFields()
const ORG_OP_EDIT_USER_ACCOUNTS
loadValuesFromForm(string $a_mode='create')
setDepartment(string $a_str)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setOfferingHelp(?array $value=null)
Class ResourceIdentification.
ResourceStakeholder $stakeholder
setPhoneHome(string $a_str)
__toUnix(array $a_time_arr)
Class ilObjectGUI Basic methods of all Output classes.
const UDF_TYPE_TEXT
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
Conductor $legal_documents
Class ilObjForumAdministration.
getResults()
Returns the results of the processing and moving operation of the uploaded files. ...
static _isExternalAccountEnabled()
Check if an external account name is required.
static getPasswordRequirementsInfo()
infotext for ilPasswordInputGUI setInfo()
setCountry(string $a_str)
setPhoneMobile(string $a_str)
setLastname(string $a_str)
const SUGGESTED_LEAD_TIME
static _getPersonalPicturePath(int $a_usr_id, string $a_size='small', bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
setTimeLimitOwner(int $a_owner)
This class represents a text area property in a property form.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
saveObject()
save user data
setSecondEmail(?string $second_email)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
updateObject()
updates object entry in object_data
setLongitude(?string $a_longitude)
setLocationZoom(?int $a_locationzoom)
static yn2tf(string $a_yn)
setZipcode(string $a_str)
Interface ResourceStakeholder.
ilPropertyFormGUI $form_gui
setUserDefinedData(array $a_data)
static _getAssignUsersStatus(int $a_role_id)
static _lookupType(int $id, bool $reference=false)
setGeneralInterests(?array $value=null)
setTimeLimitFrom(?int $a_from)
setFirstname(string $a_str)
static getSessionExpireValue()
Returns the session expiration value.
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static clear(string $a_var)
getChangeableLocalUserAdministrationDefinitions()
Class ilObjUserTrackingGUI.
static set(string $a_var, $a_val)
Set a value.
setAuthMode(?string $a_str)
ResourceStorageServices $irss
ilUserProfile $user_profile
__getDateSelect(string $a_type, string $a_varname, string $a_selected)
static _getInstallationSignature()
static _lookupLogin(int $a_user_id)
setLookingForHelp(?array $value=null)