MediaWiki REL1_28
index.php
Go to the documentation of this file.
1<?php
2// @codingStandardsIgnoreFile 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// @codingStandardsIgnoreStart MediaWiki.Usage.DirUsage.FunctionFound
27require_once dirname( __FILE__ ) . '/../includes/PHPVersionCheck.php';
28// @codingStandardsIgnoreEnd
29wfEntryPointCheck( 'mw-config/index.php' );
30
31define( 'MW_CONFIG_CALLBACK', 'Installer::overrideConfig' );
32define( 'MEDIAWIKI_INSTALL', true );
33
34// Resolve relative to regular MediaWiki root
35// instead of mw-config subdirectory.
36chdir( dirname( __DIR__ ) );
37require dirname( __DIR__ ) . '/includes/WebStart.php';
38
40
41function wfInstallerMain() {
43
45
46 if ( !$installer->startSession() ) {
47
48 if ( $installer->request->getVal( "css" ) ) {
49 // Do not display errors on css pages
50 $installer->outputCss();
51 exit;
52 }
53
54 $errors = $installer->getPhpErrors();
55 $installer->showError( 'config-session-error', $errors[0] );
56 $installer->finish();
57 exit;
58 }
59
60 $fingerprint = $installer->getFingerprint();
61 if ( isset( $_SESSION['installData'][$fingerprint] ) ) {
62 $session = $_SESSION['installData'][$fingerprint];
63 } else {
64 $session = array();
65 }
66
67 if ( !is_null( $wgRequest->getVal( 'uselang' ) ) ) {
68 $langCode = $wgRequest->getVal( 'uselang' );
69 } elseif ( isset( $session['settings']['_UserLang'] ) ) {
70 $langCode = $session['settings']['_UserLang'];
71 } else {
72 $langCode = 'en';
73 }
74 $wgLang = Language::factory( $langCode );
75 RequestContext::getMain()->setLanguage( $wgLang );
76
77 $installer->setParserLanguage( $wgLang );
78
80
81 $session = $installer->execute( $session );
82
83 $_SESSION['installData'][$fingerprint] = $session;
84
85}
$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:379
if(! $wgDBerrorLogTZ) $wgRequest
Definition Setup.php:664
static getWebInstaller(WebRequest $request)
Instantiates and returns an instance of WebInstaller or its descendant classes.
static getMain()
Static methods.
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
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
const NS_PROJECT
Definition Defines.php:60
the array() calling protocol came about after MediaWiki 1.4rc1.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
wfInstallerMain()
Definition index.php:41