MediaWiki REL1_31
load.php
Go to the documentation of this file.
1<?php
27
28// This endpoint is supposed to be independent of request cookies and other
29// details of the session. Enforce this constraint with respect to session use.
30define( 'MW_NO_SESSION', 1 );
31
32require __DIR__ . '/includes/WebStart.php';
33
34// URL safety checks
35if ( !$wgRequest->checkUrlExtension() ) {
36 return;
37}
38
39// Disable ChronologyProtector so that we don't wait for unrelated MediaWiki
40// writes when getting database connections for ResourceLoader. (T192611)
41MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->disableChronologyProtection();
42
43// Set up ResourceLoader
45 ConfigFactory::getDefaultInstance()->makeConfig( 'main' ),
46 LoggerFactory::getInstance( 'resourceloader' )
47);
49
50// Respond to ResourceLoader request
51$resourceLoader->respond( $context );
52
53Profiler::instance()->setTemplated( true );
54
56$mediawiki->doPostOutputShutdown( 'fast' );
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
if(! $wgDBerrorLogTZ) $wgRequest
Definition Setup.php:737
PSR-3 logger instance factory.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Object passed around to modules which contains information about the state of a specific loader reque...
Dynamic JavaScript and CSS resource loading system.
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
$resourceLoader
Definition load.php:44
$context
Definition load.php:48
$mediawiki
Definition load.php:55
A helper class for throttling authentication attempts.