MediaWiki master
Setup.php File Reference

The setup for all MediaWiki processes (both web-based and CLI). More...

Go to the source code of this file.

Variables

if(defined( 'MW_SETUP_CALLBACK')) $dynamicDefaults = new DynamicDefaultValues( $wgSettings->getConfigSchema() )
 Customization point after most things are loaded (constants, functions, classes, LocalSettings.
 
if(!defined( 'MEDIAWIKI')) if(ini_get('mbstring.func_overload')) if(!defined( 'MW_ENTRY_POINT')) global $IP = wfDetectInstallPath()
 Environment checks.
 
if(!defined('MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli') if(MW_ENTRY_POINT !=='cli' && $wgPingback) $settingsWarnings = $wgSettings->getWarnings()
 
 $wgAutoloadClasses = []
 
if(!interface_exists(LoggerInterface::class)) $wgCommandLineMode = MW_ENTRY_POINT === 'cli'
 Pre-config setup: Before loading LocalSettings.php.
 
 $wgConf = new SiteConfiguration
 $wgConf hold the site configuration.
 
global $wgExtensionFunctions
 
global $wgFullyInitialised = true
 
if( $wgServer===false) global $wgHooks
 
global $wgInitialSessionId = null
 
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli') $wgLang = new StubUserLang
 
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli') $wgOut = RequestContext::getMain()->getOutput()
 
global $wgRequest = RequestContext::getMain()->getRequest()
 
 $wgScopeTest = 'MediaWiki Setup.php scope test'
 
if( $wgServerName !==false) $wgServerName = parse_url( $wgCanonicalServer, PHP_URL_HOST )
 
 $wgSettings = SettingsBuilder::getInstance()
 
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli') $wgTitle = null
 
 $wgUser = new StubGlobalUser( RequestContext::getMain()->getUser() )
 
if( $wgCanonicalServer===false) $wgVirtualRestConfig ['global']['domain'] = $wgCanonicalServer
 
if(defined( 'MW_USE_CONFIG_SCHEMA_CLASS')) else
 
const MW_SERVICE_BOOTSTRAP_COMPLETE 1
 
 try
 

Detailed Description

The setup for all MediaWiki processes (both web-based and CLI).

The entry point (such as WebStart.php and doMaintenance.php) has these responsibilities:

  • The entry point MUST:
    • define the 'MEDIAWIKI' constant.
  • The entry point SHOULD:
    • define the 'MW_ENTRY_POINT' constant.
    • display an error if MW_CONFIG_CALLBACK is not defined and the file specified in MW_CONFIG_FILE (or the LocalSettings.php default location) does not exist. The error should either be sent before and instead of the Setup.php inclusion, or (if it needs classes and dependencies from core) the error can be displayed via a MW_CONFIG_CALLBACK, which must then abort the process to prevent the rest of Setup.php from executing.

This file does:

  • run-time environment checks,
  • define MW_INSTALL_PATH, $IP, and $wgBaseDirectory,
  • load autoloaders, constants, default settings, and global functions,
  • load the site configuration (e.g. LocalSettings.php),
  • load the enabled extensions (via ExtensionRegistry),
  • trivial expansion of site configuration defaults and shortcuts (no calls to MediaWikiServices or other parts of MediaWiki),
  • initialization of:
    • PHP run-time (setlocale, memory limit, default date timezone)
    • the debug logger (MWDebug)
    • the service container (MediaWikiServices)
    • the exception handler (MWExceptionHandler)
    • the session manager (SessionManager)
  • complex expansion of site configuration defaults (those that require calling into MediaWikiServices, global functions, or other classes.).

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. http://www.gnu.org/copyleft/gpl.html

Definition in file Setup.php.

Variable Documentation

◆ $dynamicDefaults

if (defined('MW_SETUP_CALLBACK')) $dynamicDefaults = new DynamicDefaultValues( $wgSettings->getConfigSchema() )

Customization point after most things are loaded (constants, functions, classes, LocalSettings.

Note that this runs before extensions are registered, and before most singletons become available, and before MediaWikiServices is initialized.

Definition at line 253 of file Setup.php.

Referenced by MediaWiki\Settings\Config\ConfigSchemaAggregator\addDynamicDefaults().

◆ $IP

Environment checks.

These are inline checks done before we include any source files, and thus these conditions may be assumed by all source code.

Definition at line 113 of file Setup.php.

Referenced by CommandLineInstaller\__construct(), MediaWiki\Shell\CommandFactory\create(), MediaWiki\Maintenance\MaintenanceRunner\defineSettings(), MediaWiki\Installer\Installer\envCheckUploadsDirectory(), MediaWiki\Installer\Installer\envPrepPath(), BenchmarkSettings\execute(), CheckComposerLockUpToDate\execute(), CleanupSpam\execute(), DumpUploads\execute(), FindDeprecated\execute(), GenerateJsonI18n\execute(), SchemaMaintenance\execute(), CommandLineInstaller\execute(), DateFormats\execute(), GenerateNormalizerDataAr\execute(), GenerateNormalizerDataMl\execute(), ManageForeignResources\execute(), GeneratePhpCharToUpperMappings\execute(), MWDocGen\execute(), MwSql\execute(), MediaWiki\Maintenance\Version\execute(), MediaWiki\ResourceLoader\Module\expandRelativePaths(), MediaWiki\ResourceLoader\ImageModule\extractLocalBasePath(), MediaWiki\ResourceLoader\OOUIIconPackModule\extractLocalBasePath(), MediaWiki\Installer\Installer\getExistingLocalSettings(), FindDeprecated\getFiles(), MediaWiki\Installer\SqliteInstaller\getGlobalDefaults(), Language\getGrammarTransformations(), MediaWiki\Languages\LanguageNameUtils\getJsonMessagesFileName(), LocalisationCache\getMessagesDirs(), MediaWiki\Languages\LanguageNameUtils\getMessagesFileName(), MediaWiki\ResourceLoader\Module\getRelativePaths(), MediaWiki\ResourceLoader\StartUpModule\getScript(), File\iconThumb(), MediaWiki\Installer\Installer\includeExtensionFiles(), MWDocGen\init(), ExternalStoreDB\initializeTable(), MediaWiki\Settings\LocalSettingsLoader\loadLocalSettingsFile(), MediaWiki\Composer\ComposerPhpunitXmlCoverageEdit\onEvent(), TextPassDumper\openSpawn(), MediaWiki\Installer\DatabaseInstaller\populateInterwikiTable(), MediaWiki\Installer\SqliteInstaller\setupSearchIndex(), and wfDetectInstallPath().

◆ $settingsWarnings

if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli') if (MW_ENTRY_POINT !=='cli' &&$wgPingback) $settingsWarnings = $wgSettings->getWarnings()

Definition at line 610 of file Setup.php.

◆ $wgAutoloadClasses

◆ $wgCommandLineMode

if (!interface_exists(LoggerInterface::class)) $wgCommandLineMode = MW_ENTRY_POINT === 'cli'

Pre-config setup: Before loading LocalSettings.php.

These are changes and additions to runtime that don't vary on site configuration.

Definition at line 140 of file Setup.php.

Referenced by MediaWiki\Settings\LocalSettingsLoader\loadLocalSettingsFile().

◆ $wgConf

$wgConf = new SiteConfiguration

$wgConf hold the site configuration.

Not used for much in a default install.

Since
1.5

Definition at line 147 of file Setup.php.

◆ $wgExtensionFunctions

global $wgExtensionFunctions

Definition at line 564 of file Setup.php.

◆ $wgFullyInitialised

◆ $wgHooks

$wgHooks
Initial value:
MediaWikiServices::getInstance()->getHookContainer(),
)
if( $wgServer===false) global $wgHooks
Definition Setup.php:338

Definition at line 352 of file Setup.php.

◆ $wgInitialSessionId

$wgInitialSessionId = null

Definition at line 415 of file Setup.php.

◆ $wgLang

◆ $wgOut

◆ $wgRequest

◆ $wgScopeTest

$wgScopeTest = 'MediaWiki Setup.php scope test'

Definition at line 188 of file Setup.php.

◆ $wgServerName

if ($wgServerName !==false) $wgServerName = parse_url( $wgCanonicalServer, PHP_URL_HOST )

Definition at line 370 of file Setup.php.

◆ $wgSettings

$wgSettings = SettingsBuilder::getInstance()

◆ $wgTitle

◆ $wgUser

User $wgUser = new StubGlobalUser( RequestContext::getMain()->getUser() )
Deprecated:
since 1.35, use an available context source when possible, or, as a backup, RequestContext::getMain()

Definition at line 543 of file Setup.php.

Referenced by MediaWiki\SpecialPage\SpecialPageFactory\capturePath(), DoubleRedirectJob\run(), and MediaWiki\StubObject\StubGlobalUser\setUser().

◆ $wgVirtualRestConfig

if ($wgCanonicalServer===false) $wgVirtualRestConfig[ 'global'][ 'domain'] = $wgCanonicalServer

Definition at line 364 of file Setup.php.

◆ else

if (!defined('MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli') else
Initial value:
{
$wgSettings->load( new PhpSettingsSource( MW_INSTALL_PATH . '/includes/config-schema.php' ) )
$wgSettings
Definition Setup.php:151
Settings loaded from a PHP file path as an array structure.

Definition at line 158 of file Setup.php.

◆ MW_SERVICE_BOOTSTRAP_COMPLETE

const MW_SERVICE_BOOTSTRAP_COMPLETE 1

Definition at line 326 of file Setup.php.

◆ try

try
Initial value:
{
if ( defined( 'MW_CONFIG_CALLBACK' ) ) {
call_user_func( MW_CONFIG_CALLBACK, $wgSettings );
} else {
wfDetectLocalSettingsFile( MW_INSTALL_PATH );
if ( getenv( 'MW_USE_LOCAL_SETTINGS_LOADER' ) ) {
$localSettingsLoader = new LocalSettingsLoader( $wgSettings, MW_INSTALL_PATH );
$localSettingsLoader->loadLocalSettingsFile( MW_CONFIG_FILE );
unset( $localSettingsLoader );
} else {
if ( str_ends_with( MW_CONFIG_FILE, '.php' ) ) {
$wgSettings->apply();
require_once MW_CONFIG_FILE;
} else {
$wgSettings->loadFile( MW_CONFIG_FILE );
}
}
}
$wgSettings->apply()
wfDetectLocalSettingsFile(?string $installationPath=null)
Decide and remember where to load LocalSettings from.
Utility for loading LocalSettings files.
const MW_CONFIG_CALLBACK
Definition install.php:32

Definition at line 199 of file Setup.php.