MediaWiki  REL1_31
InstallerOverrides.php
Go to the documentation of this file.
1 <?php
27  private static function getOverrides() {
28  global $IP;
29  static $overrides;
30 
31  if ( !$overrides ) {
32  $overrides = [
33  'LocalSettingsGenerator' => LocalSettingsGenerator::class,
34  'WebInstaller' => WebInstaller::class,
35  'CliInstaller' => CliInstaller::class,
36  ];
37  foreach ( glob( "$IP/mw-config/overrides/*.php" ) as $file ) {
38  require $file;
39  }
40  }
41 
42  return $overrides;
43  }
44 
50  public static function getLocalSettingsGenerator( Installer $installer ) {
51  $className = self::getOverrides()['LocalSettingsGenerator'];
52  return new $className( $installer );
53  }
54 
60  public static function getWebInstaller( WebRequest $request ) {
61  $className = self::getOverrides()['WebInstaller'];
62  return new $className( $request );
63  }
64 
72  public static function getCliInstaller( $siteName, $admin = null, array $options = [] ) {
73  $className = self::getOverrides()['CliInstaller'];
74  return new $className( $siteName, $admin, $options );
75  }
76 }
array
the array() calling protocol came about after MediaWiki 1.4rc1.
InstallerOverrides
Definition: InstallerOverrides.php:26
php
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
InstallerOverrides\getOverrides
static getOverrides()
Definition: InstallerOverrides.php:27
InstallerOverrides\getLocalSettingsGenerator
static getLocalSettingsGenerator(Installer $installer)
Instantiates and returns an instance of LocalSettingsGenerator or its descendant classes.
Definition: InstallerOverrides.php:50
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:95
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:2001
InstallerOverrides\getWebInstaller
static getWebInstaller(WebRequest $request)
Instantiates and returns an instance of WebInstaller or its descendant classes.
Definition: InstallerOverrides.php:60
WebRequest
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
Definition: WebRequest.php:38
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:22
Installer
Base installer class.
Definition: Installer.php:46
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:56
$request
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2806
$IP
$IP
Definition: WebStart.php:52
InstallerOverrides\getCliInstaller
static getCliInstaller( $siteName, $admin=null, array $options=[])
Instantiates and returns an instance of CliInstaller or its descendant classes.
Definition: InstallerOverrides.php:72