MediaWiki  1.34.0
WebInstallerComplete.php
Go to the documentation of this file.
1 <?php
22 class WebInstallerComplete extends WebInstallerPage {
23 
24  public function execute() {
25  // Pop up a dialog box, to make it difficult for the user to forget
26  // to download the file
27  $lsUrl = $this->getVar( 'wgServer' ) . $this->parent->getUrl( [ 'localsettings' => 1 ] );
28  if ( isset( $_SERVER['HTTP_USER_AGENT'] ) &&
29  strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false
30  ) {
31  // JS appears to be the only method that works consistently with IE7+
32  $this->addHTML( "\n<script>jQuery( function () { location.href = " .
33  Xml::encodeJsVar( $lsUrl ) . "; } );</script>\n" );
34  } else {
35  $this->parent->request->response()->header( "Refresh: 0;url=$lsUrl" );
36  }
37 
38  $this->startForm();
39  $this->parent->disableLinkPopups();
40  $location = $this->parent->getLocalSettingsLocation();
41  $msg = 'config-install-done';
42  if ( $location !== false ) {
43  // config-install-done-path
44  $msg .= '-path';
45  }
46  $this->addHTML(
47  $this->parent->getInfoBox(
48  new HtmlArmor( wfMessage( $msg,
49  $lsUrl,
50  $this->getVar( 'wgServer' ) .
51  $this->getVar( 'wgScriptPath' ) . '/index.php',
52  Message::rawParam( $this->parent->makeDownloadLinkHtml() ),
53  $location ?: ''
54  )->parse() ), 'tick-32.png'
55  )
56  );
57  $this->addHTML( $this->parent->getInfoBox(
58  wfMessage( 'config-extension-link' )->plain() ) );
59 
60  $this->parent->restoreLinkPopups();
61  $this->endForm( false, false );
62  return '';
63  }
64 
65 }
HtmlArmor
Marks HTML that shouldn't be escaped.
Definition: HtmlArmor.php:28
wfMessage
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
Definition: GlobalFunctions.php:1264
Xml\encodeJsVar
static encodeJsVar( $value, $pretty=false)
Encode a variable of arbitrary type to JavaScript.
Definition: Xml.php:659