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 namespace MediaWiki\Installer
;
24 class WebInstallerUpgrade
extends WebInstallerPage
{
27 * @return bool Always true.
29 public function isSlow() {
36 public function execute() {
37 if ( $this->getVar( '_UpgradeDone' ) ) {
38 // Allow regeneration of LocalSettings.php, unless we are working
39 // from a pre-existing LocalSettings.php file and we want to avoid
40 // leaking its contents
41 if ( $this->parent
->request
->wasPosted() && !$this->getVar( '_ExistingDBSettings' ) ) {
42 // Done message acknowledged
46 // Show the done message again
47 // Make them click back again if they want to do the upgrade again
48 $this->showDoneMessage();
53 if ( !$this->parent
->needsUpgrade() ) {
57 if ( $this->parent
->request
->wasPosted() ) {
58 $this->startLiveBox();
59 $result = $this->parent
->doUpgrade();
63 $this->showDoneMessage();
66 $this->parent
->showError( 'config-upgrade-error' );
74 $this->addHTML( $this->parent
->getInfoBox(
75 wfMessage( 'config-can-upgrade', MW_VERSION
)->plain() ) );
81 public function showDoneMessage() {
83 $regenerate = !$this->getVar( '_ExistingDBSettings' );
85 $msg = 'config-upgrade-done';
87 $msg = 'config-upgrade-done-no-regenerate';
89 $this->parent
->disableLinkPopups();
91 $this->parent
->getInfoBox(
93 $this->getVar( 'wgServer' ) .
94 $this->getVar( 'wgScriptPath' ) . '/index.php'
95 )->plain(), 'tick-32.png'
98 $this->parent
->restoreLinkPopups();
99 $this->endForm( $regenerate ?
'regenerate' : false, false );