skinFactory = $skinFactory; } public function execute( $par ) { if ( $this->getRequest()->getRawVal( 'display' ) === 'popup' ) { // Replace the default skin with a "micro-skin" that omits most of the interface. (T362706) // In the future, we might allow normal skins to serve this mode too, if they advise that // they support it by setting a skin option, so that colors and fonts could stay consistent. $this->getContext()->setSkin( $this->skinFactory->makeSkin( 'authentication-popup' ) ); } $this->setHeaders(); $out = $this->getOutput(); $out->addModules( 'mediawiki.authenticationPopup.success' ); if ( $this->getUser()->isNamed() ) { $out->setPageTitleMsg( $this->msg( 'loginsuccesstitle' ) ); $out->addWikiMsg( 'loginsuccess', wfEscapeWikiText( $this->getUser()->getName() ) ); } else { $out->setPageTitleMsg( $this->msg( 'exception-nologin' ) ); $out->addWikiMsg( 'exception-nologin-text' ); } $out->addWikiMsg( 'userlogin-authpopup-closeme' ); } }