19 declare(strict_types=1);
58 $this->tpl = $DIC[
'tpl'];
59 $this->ui_factory = $DIC[
'ui.factory'];
60 $this->ui_renderer = $DIC[
'ui.renderer'];
61 $this->
lng = $DIC[
'lng'];
62 $this->
ctrl = $DIC[
'ilCtrl'];
63 $this->log = $DIC->logger();
64 $this->mail_sender_factory = $DIC->mail()->mime()->senderFactory();
65 $this->
help = $DIC[
'ilHelp'];
66 $this->
tabs = $DIC[
'ilTabs'];
67 $this->
toolbar = $DIC[
'ilToolbar'];
68 $this->
user = $DIC[
'ilUser'];
70 $this->auth_session = $DIC[
'ilAuthSession'];
71 $this->rbac_system = $DIC[
'rbacsystem'];
72 $this->style_definition = $DIC[
'styleDefinition'];
73 $this->navigation_history = $DIC[
'ilNavigationHistory'];
74 $this->
lng->loadLanguageModule(
'user');
75 $this->
ctrl->saveParameter($this,
'user_page');
94 $next_class = $this->
ctrl->getNextClass();
96 switch ($next_class) {
97 case 'ilmailoptionsgui':
103 $this->
tabs->activateTab(
'mail_settings');
108 case strtolower(ilLocalUserPasswordSettingsGUI::class):
110 $this->
tabs->activateTab(
'password');
116 $cmd = $this->
ctrl->getCmd(
'showGeneralSettings');
125 $this->
help->setScreenIdComponent(
'user');
127 $showPassword = $a_cmd ===
'showPassword';
128 $showGeneralSettings = $a_cmd ===
'showGeneralSettings';
130 $this->
tabs->addTarget(
132 $this->
ctrl->getLinkTarget($this,
'showGeneralSettings'),
139 if (LocalUserPasswordManager::getInstance()->allowPasswordChange($this->
user)) {
140 $this->
tabs->addTarget(
142 $this->
ctrl->getLinkTargetByClass(
144 ilDashboardGUI::class,
146 ilLocalUserPasswordSettingsGUI::class
158 $this->
settings->get(
'show_mail_settings')
161 $this->
ctrl->setParameter($this,
'referrer',
'ilPersonalSettingsGUI');
163 $this->
tabs->addTarget(
165 $this->
ctrl->getLinkTargetByClass(
'ilMailOptionsGUI'),
172 $this->
settings->get(
'user_delete_own_account') &&
177 $this->
lng->txt(
'user_delete_own_account'),
178 $this->
ctrl->getLinkTarget($this,
'deleteOwnAccountStep1')
185 $this->tpl->setTitle($this->
lng->txt(
'personal_settings'));
190 return $this->user_settings_config->isVisibleAndChangeable($setting);
195 return $this->user_settings_config->isVisible($setting);
200 return $this->user_settings_config->isChangeable($setting);
206 $this->
tabs->activateTab(
'general_settings');
213 $this->tpl->setContent($this->
form->getHTML());
214 $this->tpl->printToStdout();
223 $languages = $this->
lng->getInstalledLanguages();
225 foreach ($languages as $lang_key) {
226 $options[$lang_key] = $this->
lng->txtlng(
'meta',
'meta_l_' . $lang_key, $lang_key);
230 $lang->setOptionsLangAttribute(fn($options, $key) => $key);
231 $lang->setOptions($options);
232 $lang->setValue($this->
user->getLanguage());
233 if (count($options) <= 1 || $this->
settings->get(
'usr_settings_disable_language') ===
'1') {
234 $lang->setDisabled(
true);
241 $skins = $this->style_definition::getAllSkins();
242 if (is_array($skins)) {
246 foreach ($skins as $skin) {
247 foreach ($skin->getStyles() as $style) {
255 $options[$skin->getId() .
':' . $style->getId()] = $skin->getName() .
' / ' . $style->getName();
259 $si->setValue($this->
user->skin .
':' . $this->user->prefs[
'style']);
260 $si->setDisabled((
bool) $this->
settings->get(
'usr_settings_disable_skin_style'));
261 $this->
form->addItem($si);
266 $this->
help->addPersonalSettingToLegacyForm($this->
form);
268 $lv =
new ilSelectInputGUI($this->
lng->txt(
'user_store_last_visited'),
'store_last_visited');
270 0 => $this->
lng->txt(
'user_lv_keep_entries'),
271 1 => $this->
lng->txt(
'user_lv_keep_only_for_session'),
272 2 => $this->
lng->txt(
'user_lv_do_not_store')
275 $last_visited = (
int) ($this->
user->prefs[
'store_last_visited'] ?? 0);
276 $lv->setValue($last_visited);
277 $this->
form->addItem($lv);
281 $this->
lng->txt(
'session_reminder_input'),
282 'session_reminder_lead_time' 286 $session_reminder->setInfo(
288 $this->
lng->txt(
'session_reminder_lead_time_info'),
295 $session_reminder->setValue(
296 (
string) $session_reminder_object->getEffectiveLeadTime()
298 $session_reminder->setSize(3);
300 $session_reminder->setMaxValue($session_reminder_object->getMaxPossibleLeadTime());
301 $this->
form->addItem($session_reminder);
307 $this->
lng->loadLanguageModule(
'dateplaner');
312 $select->setInfo($this->
lng->txt(
'cal_timezone_info'));
313 $select->setValue($user_settings->getTimeZone());
314 $this->
form->addItem($select);
323 $select->setInfo($this->
lng->txt(
'cal_date_format_info'));
324 $select->setValue($user_settings->getDateFormat());
325 $this->
form->addItem($select);
332 $select->setInfo($this->
lng->txt(
'cal_time_format_info'));
333 $select->setValue($user_settings->getTimeFormat());
334 $this->
form->addItem($select);
336 if ($this->starting_point_repository->isPersonalStartingPointEnabled()) {
337 $this->
lng->loadLanguageModule(
'administration');
340 $si->setInfo($this->
lng->txt(
'adm_user_starting_point_info'));
341 $def_opt =
new ilRadioOption($this->
lng->txt(
'adm_user_starting_point_inherit'),
'0');
342 $def_opt->
setInfo($this->
lng->txt(
'adm_user_starting_point_inherit_info'));
343 $si->addOption($def_opt);
344 foreach ($this->starting_point_repository->getPossibleStartingPoints() as $value => $caption) {
348 $si->addOption(
new ilRadioOption($this->
lng->txt($caption), (string) $value));
350 $si->setValue((
string) $this->starting_point_repository->getCurrentUserPersonalStartingPoint());
351 $this->
form->addItem($si);
355 $this->
lng->txt(
'adm_user_starting_point_object'),
358 $repobj_id =
new ilTextInputGUI($this->
lng->txt(
'adm_user_starting_point_ref_id'),
'usr_start_ref_id');
359 $repobj_id->setInfo($this->
lng->txt(
'adm_user_starting_point_ref_id_info'));
360 $repobj_id->setRequired(
true);
361 $repobj_id->setSize(5);
363 $start_ref_id = $this->starting_point_repository->getCurrentUserPersonalStartingObject();
364 $repobj_id->setValue($start_ref_id);
375 $repobj->addSubItem($repobj_id);
376 $si->addOption($repobj);
379 $this->
form->addCommandButton(
'saveGeneralSettings', $this->
lng->txt(
'save'));
380 $this->
form->setTitle($this->
lng->txt(
'general_settings'));
381 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
387 if ($this->
form->checkInput()
391 if ($this->
form->getInput(
'skin_style') !=
'') {
392 $sknst = explode(
':', $this->
form->getInput(
'skin_style'));
395 $this->
user->getPref(
'style') != $sknst[1] ||
396 $this->
user->getPref(
'skin') != $sknst[0]
398 $this->
user->setPref(
'skin', $sknst[0]);
399 $this->
user->setPref(
'style', $sknst[1]);
406 $this->
user->setLanguage($this->
form->getInput(
'language'));
410 $this->
help->savePersonalSettingFromLegacyForm($this->
form);
412 $this->
user->setPref(
'store_last_visited', $this->
form->getInput(
'store_last_visited'));
413 if ((
int) $this->
form->getInput(
'store_last_visited') > 0) {
414 $this->navigation_history->deleteDBEntries();
415 if ((
int) $this->
form->getInput(
'store_last_visited') === 2) {
416 $this->navigation_history->deleteSessionEntries();
421 $this->
user->setPref(
422 'session_reminder_lead_time',
423 (
string) $this->
form->getInput(
'session_reminder_lead_time')
427 if ($this->starting_point_repository->isPersonalStartingPointEnabled()) {
428 $s_ref_id = $this->
form->getInput(
'usr_start_ref_id');
429 $s_ref_id = ($s_ref_id ===
'')
432 $this->starting_point_repository->setCurrentUserPersonalStartingPoint(
433 (
int) $this->
form->getInput(
'usr_start'),
438 $this->
user->update();
442 $user_settings->setTimeZone($this->
form->getInput(
'timezone'));
443 $user_settings->setDateFormat((
int) $this->
form->getInput(
'date_format'));
444 $user_settings->setTimeFormat((
int) $this->
form->getInput(
'time_format'));
445 $user_settings->save();
447 $this->tpl->setOnScreenMessage(
449 $this->
lng->txtlng(
'common',
'msg_obj_modified', $this->user->getLanguage()),
453 $this->
ctrl->redirect($this,
'showGeneralSettings');
456 $this->
form->setValuesByPost();
462 if (!$this->starting_point_repository->isPersonalStartingPointEnabled()
467 $ref_id = $this->
form->getInput(
'usr_start_ref_id');
469 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'obj_ref_id_not_exist'),
true);
478 if (!(
bool) $this->
settings->get(
'user_delete_own_account') ||
480 $this->
ctrl->redirect($this,
'showGeneralSettings');
484 $this->
user->removeDeletionFlag();
488 $this->
tabs->activateTab(
'delacc');
490 $modal = $this->ui_factory->modal()->interruptive(
491 $this->
lng->txt(
'delete_account'),
492 $this->
lng->txt(
'user_delete_own_account_logout_confirmation'),
493 $this->
ctrl->getFormActionByClass(ilPersonalSettingsGUI::class,
'deleteOwnAccountLogout')
494 )->withActionButtonLabel($this->
lng->txt(
'user_delete_own_account_logout_button'));
496 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'user_delete_own_account_info'));
498 $this->ui_factory->button()->standard(
499 $this->
lng->txt(
'btn_next'),
500 $modal->getShowSignal()
504 $this->tpl->setContent($this->ui_renderer->render($modal));
506 $this->tpl->printToStdout();
511 $this->
user->removeDeletionFlag();
513 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'user_delete_own_account_aborted'),
true);
514 $this->
ctrl->redirect($this,
'showGeneralSettings');
519 $this->
user->activateDeletionFlag();
522 $this->auth_session->logout();
524 $this->
ctrl->redirectToURL(
'login.php?cmd=force_login&target=usr_' . md5(
'usrdelown'));
530 !(
bool) $this->
settings->get(
'user_delete_own_account') ||
532 !$this->
user->hasDeletionFlag()
534 $this->
ctrl->redirect($this,
'showGeneralSettings');
539 $this->
tabs->activateTab(
'delacc');
541 $this->tpl->setOnScreenMessage(
543 $this->
lng->txt(
'user_delete_own_account_final_confirmation')
547 $this->ui_factory->button()->standard(
548 $this->
lng->txt(
'confirm'),
549 $this->
ctrl->getLinkTargetByClass(self::class,
'deleteOwnAccountStep3')
554 $this->ui_factory->button()->standard(
555 $this->
lng->txt(
'cancel'),
556 $this->
ctrl->getLinkTargetByClass(self::class,
'abortDeleteOwnAccount')
559 $this->tpl->printToStdout();
565 !(
bool) $this->
settings->get(
'user_delete_own_account') ||
567 !$this->
user->hasDeletionFlag()
569 $this->
ctrl->redirect($this,
'showGeneralSettings');
575 $ntf->setLangModules([
'user']);
576 $ntf->addAdditionalInfo(
'profile', $this->
user->getProfileAsString($this->lng),
true);
580 $ntf->setIntroductionDirect(
582 $this->
lng->txt(
'user_delete_own_account_email_body'),
583 $this->
user->getLogin(),
589 $message = $ntf->composeAndGetMessage($this->
user->getId(),
null,
'read',
true);
590 $subject = $this->
lng->txt(
'user_delete_own_account_email_subject');
593 $user_email = $this->
user->getEmail();
594 $admin_mail = $this->
settings->get(
'user_delete_own_account_email');
597 $mmail->From($this->mail_sender_factory->system());
599 if ($user_email !==
'') {
600 $mmail->To($user_email);
601 $mmail->Bcc($admin_mail);
602 $mmail->Subject($subject,
true);
605 } elseif ($admin_mail !==
null || $admin_mail !==
'') {
606 $mmail->To($admin_mail);
607 $mmail->Subject($subject,
true);
612 $this->log->root()->log(
'Account deleted: ' . $this->
user->getLogin() .
' (' . $this->
user->getId() .
')');
614 $this->
user->delete();
617 $this->auth_session->logout();
618 $this->
ctrl->redirectToURL(
'login.php?accdel=1');
static array static setUseRelativeDates(bool $a_status)
set use relative dates
This class represents an option in a radio group.
ilRbacSystem $rbac_system
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...
workWithUserSetting(string $setting)
Provides fluid interface to LoggingServices.
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
initGeneralSettingsForm()
ilGlobalTemplateInterface $tpl
static _getShortTimeZoneList()
get short timezone list
static secondsToString(int $seconds, bool $force_with_seconds=false, ?ilLanguage $a_lng=null)
converts seconds to string: Long: 7 days 4 hour(s) ...
static _getInstanceByUserId(int $a_user_id)
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilAuthSession $auth_session
ilUserSettingsConfig $user_settings_config
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
ilUserStartingPointRepository $starting_point_repository
static _lookupTitle(int $obj_id)
const START_REPOSITORY_OBJ
ilNavigationHistory $navigation_history
Last visited history for repository items.
const SUGGESTED_LEAD_TIME
ilStyleDefinition $style_definition
GUI class for personal profile.
form( $class_path, string $cmd, string $submit_caption="")
checkPersonalStartingPoint()
ilMailMimeSenderFactory $mail_sender_factory
static setClosingContext(int $a_context)
set closing context (for statistics)
__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,)
executeCommand()
execute command
static getMailObjectRefId()
ilStyleDefinition acts as a wrapper of style related actions.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
userSettingVisible(string $setting)
userSettingEnabled(string $setting)
static _lookupType(int $id, bool $reference=false)
static getSessionExpireValue()
Returns the session expiration value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initSubTabs(string $a_cmd)
showGeneralSettings(bool $a_no_init=false)