MediaWiki REL1_34
WebInstallerRestart.php
Go to the documentation of this file.
1<?php
23
27 public function execute() {
28 $r = $this->parent->request;
29 if ( $r->wasPosted() ) {
30 $really = $r->getVal( 'submit-restart' );
31 if ( $really ) {
32 $this->parent->reset();
33 }
34
35 return 'continue';
36 }
37
38 $this->startForm();
39 $s = Html::warningBox( wfMessage( 'config-help-restart' )->plain(), 'config-warning-box' );
40 $this->addHTML( $s );
41 $this->endForm( 'restart' );
42
43 return null;
44 }
45
46}
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
Abstract class to define pages for the web installer.
endForm( $continue='continue', $back='back')