MediaWiki REL1_31
index.php
Go to the documentation of this file.
1<?php
2// phpcs:disable Generic.Arrays.DisallowLongArraySyntax
24// Bail on old versions of PHP, or if composer has not been run yet to install
25// dependencies. Using dirname( __FILE__ ) here because __DIR__ is PHP5.3+.
26// phpcs:ignore MediaWiki.Usage.DirUsage.FunctionFound
27require_once dirname( __FILE__ ) . '/../includes/PHPVersionCheck.php';
28wfEntryPointCheck( 'mw-config/index.php' );
29
30define( 'MW_CONFIG_CALLBACK', 'Installer::overrideConfig' );
31define( 'MEDIAWIKI_INSTALL', true );
32
33// Resolve relative to regular MediaWiki root
34// instead of mw-config subdirectory.
35chdir( dirname( __DIR__ ) );
36require dirname( __DIR__ ) . '/includes/WebStart.php';
37
39
40function wfInstallerMain() {
42
44
45 if ( !$installer->startSession() ) {
46 if ( $installer->request->getVal( "css" ) ) {
47 // Do not display errors on css pages
48 $installer->outputCss();
49 exit;
50 }
51
52 $errors = $installer->getPhpErrors();
53 $installer->showError( 'config-session-error', $errors[0] );
54 $installer->finish();
55 exit;
56 }
57
58 $fingerprint = $installer->getFingerprint();
59 if ( isset( $_SESSION['installData'][$fingerprint] ) ) {
60 $session = $_SESSION['installData'][$fingerprint];
61 } else {
62 $session = array();
63 }
64
65 if ( !is_null( $wgRequest->getVal( 'uselang' ) ) ) {
66 $langCode = $wgRequest->getVal( 'uselang' );
67 } elseif ( isset( $session['settings']['_UserLang'] ) ) {
68 $langCode = $session['settings']['_UserLang'];
69 } else {
70 $langCode = 'en';
71 }
72 $wgLang = Language::factory( $langCode );
73 RequestContext::getMain()->setLanguage( $wgLang );
74
75 $installer->setParserLanguage( $wgLang );
76
78
79 $session = $installer->execute( $session );
80
81 $_SESSION['installData'][$fingerprint] = $session;
82}
$wgMetaNamespace
Name of the project namespace.
wfEntryPointCheck( $entryPoint)
Check php version and that external dependencies are installed, and display an informative error if e...
$wgCanonicalNamespaceNames
Definitions of the NS_ constants are in Defines.php.
Definition Setup.php:479
if(! $wgDBerrorLogTZ) $wgRequest
Definition Setup.php:737
static getWebInstaller(WebRequest $request)
Instantiates and returns an instance of WebInstaller or its descendant classes.
static getMain()
Get the RequestContext object associated with the main request.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition design.txt:56
the array() calling protocol came about after MediaWiki 1.4rc1.
const NS_PROJECT
Definition Defines.php:78
wfInstallerMain()
Definition index.php:40