3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
22 class WebInstallerComplete
extends WebInstallerPage
{
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
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" );
35 $this->parent
->request
->response()->header( "Refresh: 0;url=$lsUrl" );
39 $this->parent
->disableLinkPopups();
40 $location = $this->parent
->getLocalSettingsLocation();
41 $msg = 'config-install-done';
42 if ( $location !== false ) {
43 // config-install-done-path
47 $this->parent
->getInfoBox(
50 $this->getVar( 'wgServer' ) .
51 $this->getVar( 'wgScriptPath' ) . '/index.php',
54 )->plain(), 'tick-32.png'
57 $this->addHTML( $this->parent
->getInfoBox(
58 wfMessage( 'config-extension-link' )->text() ) );
60 $this->parent
->restoreLinkPopups();
61 $this->endForm( false, false );