31 parent::__construct(
'Userlogout' );
55 if ( $this->
getUser()->isAnon() ) {
61 parent::execute(
$par );
82 $session = MediaWiki\Session\SessionManager::getGlobalSession();
83 if ( !$session->canSetUser() ) {
85 'cannotlogoutnow-title',
86 'cannotlogoutnow-text',
88 $session->getProvider()->describe( RequestContext::getMain()->getLanguage() )
103 $oldName = $user->getName();
107 Hooks::run(
'UserLogoutComplete', [ &$user, &$injected_html, $oldName ] );
108 $out->addHTML( $injected_html );
113 $this->
getRequest()->getValues(
'returnto',
'returntoquery' ) );
116 $out->addWikiMsg(
'logouttext', $loginURL );
118 $out->returnToMain();
An error page which can definitely be safely rendered using the OutputPage.
Special page which uses an HTMLForm to handle processing.
string null $par
The sub-page of the special page.
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.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getRequest()
Get the WebRequest being used for this instance.
Implements Special:Userlogout.
onSuccess()
Do something exciting on successful processing of the form, most likely to show a confirmation messag...
alterForm(HTMLForm $form)
Play with the HTMLForm if you need to more substantially.
getDisplayFormat()
Get display format for the form.
isListed()
Whether this special page is listed in Special:SpecialPages.
doesWrites()
Indicates whether this special page may perform database writes.
execute( $par)
Basic SpecialPage workflow: get a form, send it to the user; get some data back,.
onSubmit(array $data)
Process the form.
getFormFields()
Get an HTMLForm descriptor array.
requiresUnblock()
Let blocked users to log out and come back with their sockpuppets.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Generic operation result class Has warning/error list, boolean status and arbitrary value.