37 private $preferencesFactory;
40 private $userOptionsManager;
50 parent::__construct(
'Preferences' );
52 $services = MediaWikiServices::getInstance();
53 $this->preferencesFactory = $preferencesFactory ?? $services->getPreferencesFactory();
54 $this->userOptionsManager = $userOptionsManager ?? $services->getUserOptionsManager();
65 $out->disallowUserJs(); # Prevent hijacked user scripts from sniffing passwords etc.
70 if ( $par ==
'reset' ) {
76 $out->addModules(
'mediawiki.special.preferences.ooui' );
77 $out->addModuleStyles( [
78 'mediawiki.special.preferences.styles.ooui',
79 'oojs-ui-widgets.styles',
83 if ( $session->get(
'specialPreferencesSaveSuccess' ) ) {
85 $session->remove(
'specialPreferencesSaveSuccess' );
86 $out->addModuleStyles(
'mediawiki.notification.convertmessagebox.styles' );
93 $this->
msg(
'savedprefs' )->text()
95 'mw-preferences-messagebox mw-notify-success'
104 $user = $this->
getUser()->getInstanceForUpdate() ?: $this->
getUser();
110 $sectionTitles = $htmlForm->getPreferenceSections();
113 foreach ( $sectionTitles as $key ) {
116 'label' => $htmlForm->getLegend( $key ),
119 $out->addJsConfigVars(
'wgPreferencesTabs', $prefTabs );
121 $out->addHTML(
new \OOUI\FieldLayout(
122 new \OOUI\SearchInputWidget( [
123 'placeholder' => $this->
msg(
'searchprefs' )->text(),
126 'classes' => [
'mw-prefs-search' ],
127 'label' => $this->
msg(
'searchprefs' )->text(),
128 'invisibleLabel' =>
true,
142 $form = $this->preferencesFactory->getForm( $user, $context, PreferencesFormOOUI::class );
147 if ( !$this->
getAuthority()->isAllowed(
'editmyoptions' ) ) {
151 $this->
getOutput()->addWikiMsg(
'prefs-reset-intro' );
156 'label-message' =>
'prefs-reset-confirm',
161 HTMLForm::factory(
'ooui', $desc, $this->
getContext(),
'prefs-restore' )
163 ->setSubmitTextMsg(
'restoreprefs' )
164 ->setSubmitDestructive()
165 ->setSubmitCallback( [ $this,
'submitReset' ] )
173 if ( !$this->
getAuthority()->isAllowed(
'editmyoptions' ) ) {
177 $user = $this->
getUser()->getInstanceForUpdate();
178 $this->userOptionsManager->resetOptions( $user, $this->
getContext(),
'all' );
179 $user->saveSettings();
182 $this->
getRequest()->getSession()->set(
'specialPreferencesSaveSuccess', 1 );
Show an error when a user tries to do something they do not have the necessary permissions for.
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
requireNamedUser( $reasonMsg='exception-nologin-text', $titleMsg='exception-nologin')
If the user is not logged in or is a temporary user, throws UserNotLoggedIn.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getAuthority()
Shortcut to get the Authority executing this instance.
getRequest()
Get the WebRequest being used for this instance.
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
getPageTitle( $subpage=false)
Get a self-referential title object.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
A special page that allows users to change their preferences.
execute( $par)
Default execute method Checks user permissions.
doesWrites()
Indicates whether this special page may perform database writes.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
__construct(PreferencesFactory $preferencesFactory=null, UserOptionsManager $userOptionsManager=null)
getFormObject( $user, IContextSource $context)
Get the preferences form to use.
Interface for objects which can provide a MediaWiki context on request.