33 parent::__construct(
'Preferences' );
44 $out->disallowUserJs(); # Prevent hijacked user
scripts from sniffing passwords etc.
49 if ( $par ==
'reset' ) {
55 $out->addModules(
'mediawiki.special.preferences' );
56 $out->addModuleStyles(
'mediawiki.special.preferences.styles' );
59 if ( $session->get(
'specialPreferencesSaveSuccess' ) ) {
61 $session->remove(
'specialPreferencesSaveSuccess' );
62 $out->addModuleStyles(
'mediawiki.notification.convertmessagebox.styles' );
68 'class' =>
'mw-preferences-messagebox mw-notify-success successbox',
69 'id' =>
'mw-preferences-success',
70 'data-mw-autohide' =>
'false',
72 Html::element(
'p', [], $this->
msg(
'savedprefs' )->
text() )
81 $user = $this->
getUser()->getInstanceForUpdate() ?: $this->
getUser();
87 $sectionTitles = $htmlForm->getPreferenceSections();
90 foreach ( $sectionTitles as $key ) {
91 $prefTabs .= Html::rawElement(
'li',
93 'role' =>
'presentation',
94 'class' => ( $key ===
'personal' ) ?
'selected' : null
96 Html::rawElement(
'a',
98 'id' =>
'preftab-' . $key,
100 'href' =>
'#mw-prefsection-' . $key,
101 'aria-controls' =>
'mw-prefsection-' . $key,
102 'aria-selected' => ( $key ===
'personal' ) ?
'true' :
'false',
103 'tabIndex' => ( $key ===
'personal' ) ? 0 : -1,
105 $htmlForm->getLegend( $key )
111 Html::rawElement(
'ul',
128 $preferencesFactory = MediaWikiServices::getInstance()->getPreferencesFactory();
129 $form = $preferencesFactory->getForm( $user,
$context );
134 if ( !$this->
getUser()->isAllowed(
'editmyoptions' ) ) {
138 $this->
getOutput()->addWikiMsg(
'prefs-reset-intro' );
144 $htmlForm->setSubmitTextMsg(
'restoreprefs' );
145 $htmlForm->setSubmitDestructive();
146 $htmlForm->setSubmitCallback( [ $this,
'submitReset' ] );
147 $htmlForm->suppressReset();
153 if ( !$this->
getUser()->isAllowed(
'editmyoptions' ) ) {
157 $user = $this->
getUser()->getInstanceForUpdate();
158 $user->resetOptions(
'all', $this->
getContext() );
159 $user->saveSettings();
162 $this->
getRequest()->getSession()->set(
'specialPreferencesSaveSuccess', 1 );
An IContextSource implementation which will inherit context from another source but allow individual ...
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.
requireLogin( $reasonMsg='exception-nologin-text', $titleMsg='exception-nologin')
If the user is not logged in, throws UserNotLoggedIn error.
getUser()
Shortcut to get the User executing this instance.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key)
Wrapper around wfMessage that sets the current context.
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...
getFormObject( $user, IContextSource $context)
Get the preferences form to use.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Interface for objects which can provide a MediaWiki context on request.