Manual:$wgParserConf/pl
Ta funkcja została całkowicie usunięta z jądra MediaWiki w wersji 1.36.0. |
Parser: $wgParserConf | |
---|---|
Parser configuration. |
|
Wprowadzono w wersji: | 1.12.0 |
Przestarzałe w wersji: | 1.35.0 (Gerrit change 589397; git #a286a59e) |
Usunięto w wersji: | 1.36.0 (Gerrit change 665228; git #77c48b68) |
Dozwolone wartości: | (array) |
Domyślna wartość: | (patrz poniżej) |
Inne ustawienia: Alfabetycznie | Według funkcji |
Szczegóły
Configure the ParserFactory service in order to customize the Parser used.
Associative array with the following members:
- class
- The class name
- preprocessorClass
- The preprocessor class. Two classes are currently available: Preprocessor_Hash, which uses plain PHP arrays for temporary storage, and Preprocessor_DOM, which uses the DOM module for temporary storage. Preprocessor_DOM generally uses less memory; the speed of the two is roughly the same.
- If this parameter is not given, it uses Preprocessor_DOM if the DOM module is available, otherwise it uses Preprocessor_Hash.
The entire associative array will be passed through to the constructor as the first parameter.
Note that only Setup.php can use this variable -- the configuration will change at runtime via $wgParser member functions, so the contents of this variable will be out-of-date.
The variable can only be changed during LocalSettings.php
, in particular, it can't be changed during an extension setup function.
Default values
Wersja MediaWiki: | ≥ 1.35 |
$wgParserConf = [
'class' => Parser::class,
];
Wersje MediaWiki: | 1.31 – 1.34 |
$wgParserConf = [
'class' => Parser::class,
# 'preprocessorClass' => Preprocessor_Hash::class,
];
Wersje MediaWiki: | 1.13 – 1.30 |
$wgParserConf = [
'class' => 'Parser',
# 'preprocessorClass' => 'Preprocessor_Hash',
];
Wersja MediaWiki: | 1.12 |
$wgParserConf = array(
'class' => 'Parser',
'preprocessorClass' => 'Preprocessor_Hash',
);