MediaWiki REL1_31
AllMessagesTablePager.php
Go to the documentation of this file.
1<?php
23
31
33
35
37
41 public $lang;
42
46 public $custom;
47
48 function __construct( $page, $conds, $langObj = null ) {
49 parent::__construct( $page->getContext() );
50 $this->mIndexField = 'am_title';
51 $this->mPage = $page;
52 $this->mConds = $conds;
53 // FIXME: Why does this need to be set to DIR_DESCENDING to produce ascending ordering?
54 $this->mDefaultDirection = IndexPager::DIR_DESCENDING;
55 $this->mLimitsShown = [ 20, 50, 100, 250, 500, 5000 ];
56
58
59 $this->talk = $this->msg( 'talkpagelinktext' )->escaped();
60
61 $this->lang = ( $langObj ? $langObj : $wgContLang );
62 $this->langcode = $this->lang->getCode();
63 $this->foreign = !$this->lang->equals( $wgContLang );
64
65 $request = $this->getRequest();
66
67 $this->filter = $request->getVal( 'filter', 'all' );
68 if ( $this->filter === 'all' ) {
69 $this->custom = null; // So won't match in either case
70 } else {
71 $this->custom = ( $this->filter === 'unmodified' );
72 }
73
74 $prefix = $this->getLanguage()->ucfirst( $request->getVal( 'prefix', '' ) );
75 $prefix = $prefix !== '' ?
76 Title::makeTitleSafe( NS_MEDIAWIKI, $request->getVal( 'prefix', null ) ) :
77 null;
78
79 if ( $prefix !== null ) {
80 $this->displayPrefix = $prefix->getDBkey();
81 $this->prefix = '/^' . preg_quote( $this->displayPrefix, '/' ) . '/i';
82 } else {
83 $this->displayPrefix = false;
84 $this->prefix = false;
85 }
86
87 // The suffix that may be needed for message names if we're in a
88 // different language (eg [[MediaWiki:Foo/fr]]: $suffix = '/fr'
89 if ( $this->foreign ) {
90 $this->suffix = '/' . $this->langcode;
91 } else {
92 $this->suffix = '';
93 }
94 }
95
96 function buildForm() {
97 $attrs = [ 'id' => 'mw-allmessages-form-lang', 'name' => 'lang' ];
98 $msg = wfMessage( 'allmessages-language' );
99 $langSelect = Xml::languageSelector( $this->langcode, false, null, $attrs, $msg );
100
101 $out = Xml::openElement( 'form', [
102 'method' => 'get',
103 'action' => $this->getConfig()->get( 'Script' ),
104 'id' => 'mw-allmessages-form'
105 ] ) .
106 Xml::fieldset( $this->msg( 'allmessages-filter-legend' )->text() ) .
107 Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) .
108 Xml::openElement( 'table', [ 'class' => 'mw-allmessages-table' ] ) . "\n" .
109 '<tr>
110 <td class="mw-label">' .
111 Xml::label( $this->msg( 'allmessages-prefix' )->text(), 'mw-allmessages-form-prefix' ) .
112 "</td>\n
113 <td class=\"mw-input\">" .
114 Xml::input(
115 'prefix',
116 20,
117 str_replace( '_', ' ', $this->displayPrefix ),
118 [ 'id' => 'mw-allmessages-form-prefix' ]
119 ) .
120 "</td>\n
121 </tr>
122 <tr>\n
123 <td class='mw-label'>" .
124 $this->msg( 'allmessages-filter' )->escaped() .
125 "</td>\n
126 <td class='mw-input'>" .
127 Xml::radioLabel( $this->msg( 'allmessages-filter-unmodified' )->text(),
128 'filter',
129 'unmodified',
130 'mw-allmessages-form-filter-unmodified',
131 ( $this->filter === 'unmodified' )
132 ) .
133 Xml::radioLabel( $this->msg( 'allmessages-filter-all' )->text(),
134 'filter',
135 'all',
136 'mw-allmessages-form-filter-all',
137 ( $this->filter === 'all' )
138 ) .
139 Xml::radioLabel( $this->msg( 'allmessages-filter-modified' )->text(),
140 'filter',
141 'modified',
142 'mw-allmessages-form-filter-modified',
143 ( $this->filter === 'modified' )
144 ) .
145 "</td>\n
146 </tr>
147 <tr>\n
148 <td class=\"mw-label\">" . $langSelect[0] . "</td>\n
149 <td class=\"mw-input\">" . $langSelect[1] . "</td>\n
150 </tr>" .
151
152 '<tr>
153 <td class="mw-label">' .
154 Xml::label( $this->msg( 'table_pager_limit_label' )->text(), 'mw-table_pager_limit_label' ) .
155 '</td>
156 <td class="mw-input">' .
157 $this->getLimitSelect( [ 'id' => 'mw-table_pager_limit_label' ] ) .
158 '</td>
159 <tr>
160 <td></td>
161 <td>' .
162 Xml::submitButton( $this->msg( 'allmessages-filter-submit' )->text() ) .
163 "</td>\n
164 </tr>" .
165
166 Xml::closeElement( 'table' ) .
167 $this->getHiddenFields( [ 'title', 'prefix', 'filter', 'lang', 'limit' ] ) .
168 Xml::closeElement( 'fieldset' ) .
169 Xml::closeElement( 'form' );
170
171 return $out;
172 }
173
174 function getAllMessages( $descending ) {
175 $messageNames = Language::getLocalisationCache()->getSubitemList( 'en', 'messages' );
176
177 // Normalise message names so they look like page titles and sort correctly - T86139
178 $messageNames = array_map( [ $this->lang, 'ucfirst' ], $messageNames );
179
180 if ( $descending ) {
181 rsort( $messageNames );
182 } else {
183 asort( $messageNames );
184 }
185
186 return $messageNames;
187 }
188
200 public static function getCustomisedStatuses( $messageNames, $langcode = 'en', $foreign = false ) {
201 // FIXME: This function should be moved to Language:: or something.
202
204 $res = $dbr->select( 'page',
205 [ 'page_namespace', 'page_title' ],
206 [ 'page_namespace' => [ NS_MEDIAWIKI, NS_MEDIAWIKI_TALK ] ],
207 __METHOD__,
208 [ 'USE INDEX' => 'name_title' ]
209 );
210 $xNames = array_flip( $messageNames );
211
212 $pageFlags = $talkFlags = [];
213
214 foreach ( $res as $s ) {
215 $exists = false;
216
217 if ( $foreign ) {
218 $titleParts = explode( '/', $s->page_title );
219 if ( count( $titleParts ) === 2 &&
220 $langcode === $titleParts[1] &&
221 isset( $xNames[$titleParts[0]] )
222 ) {
223 $exists = $titleParts[0];
224 }
225 } elseif ( isset( $xNames[$s->page_title] ) ) {
226 $exists = $s->page_title;
227 }
228
229 $title = Title::newFromRow( $s );
230 if ( $exists && $title->inNamespace( NS_MEDIAWIKI ) ) {
231 $pageFlags[$exists] = true;
232 } elseif ( $exists && $title->inNamespace( NS_MEDIAWIKI_TALK ) ) {
233 $talkFlags[$exists] = true;
234 }
235 }
236
237 return [ 'pages' => $pageFlags, 'talks' => $talkFlags ];
238 }
239
248 function reallyDoQuery( $offset, $limit, $descending ) {
249 $result = new FakeResultWrapper( [] );
250
251 $messageNames = $this->getAllMessages( $descending );
252 $statuses = self::getCustomisedStatuses( $messageNames, $this->langcode, $this->foreign );
253
254 $count = 0;
255 foreach ( $messageNames as $key ) {
256 $customised = isset( $statuses['pages'][$key] );
257 if ( $customised !== $this->custom &&
258 ( $descending && ( $key < $offset || !$offset ) || !$descending && $key > $offset ) &&
259 ( ( $this->prefix && preg_match( $this->prefix, $key ) ) || $this->prefix === false )
260 ) {
261 $actual = wfMessage( $key )->inLanguage( $this->langcode )->plain();
262 $default = wfMessage( $key )->inLanguage( $this->langcode )->useDatabase( false )->plain();
263 $result->result[] = [
264 'am_title' => $key,
265 'am_actual' => $actual,
266 'am_default' => $default,
267 'am_customised' => $customised,
268 'am_talk_exists' => isset( $statuses['talks'][$key] )
269 ];
270 $count++;
271 }
272
273 if ( $count === $limit ) {
274 break;
275 }
276 }
277
278 return $result;
279 }
280
281 function getStartBody() {
282 $tableClass = $this->getTableClass();
283 return Xml::openElement( 'table', [
284 'class' => "mw-datatable $tableClass",
285 'id' => 'mw-allmessagestable'
286 ] ) .
287 "\n" .
288 "<thead><tr>
289 <th rowspan=\"2\">" .
290 $this->msg( 'allmessagesname' )->escaped() . "
291 </th>
292 <th>" .
293 $this->msg( 'allmessagesdefault' )->escaped() .
294 "</th>
295 </tr>\n
296 <tr>
297 <th>" .
298 $this->msg( 'allmessagescurrent' )->escaped() .
299 "</th>
300 </tr></thead><tbody>\n";
301 }
302
303 function formatValue( $field, $value ) {
304 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
305 switch ( $field ) {
306 case 'am_title' :
307 $title = Title::makeTitle( NS_MEDIAWIKI, $value . $this->suffix );
308 $talk = Title::makeTitle( NS_MEDIAWIKI_TALK, $value . $this->suffix );
309 $translation = Linker::makeExternalLink(
310 'https://translatewiki.net/w/i.php?' . wfArrayToCgi( [
311 'title' => 'Special:SearchTranslations',
312 'group' => 'mediawiki',
313 'grouppath' => 'mediawiki',
314 'language' => $this->getLanguage()->getCode(),
315 'query' => $value . ' ' . $this->msg( $value )->plain()
316 ] ),
317 $this->msg( 'allmessages-filter-translate' )->text()
318 );
319
320 if ( $this->mCurrentRow->am_customised ) {
321 $title = $linkRenderer->makeKnownLink( $title, $this->getLanguage()->lcfirst( $value ) );
322 } else {
323 $title = $linkRenderer->makeBrokenLink(
324 $title,
325 $this->getLanguage()->lcfirst( $value )
326 );
327 }
328 if ( $this->mCurrentRow->am_talk_exists ) {
329 $talk = $linkRenderer->makeKnownLink( $talk, $this->talk );
330 } else {
331 $talk = $linkRenderer->makeBrokenLink(
332 $talk,
333 $this->talk
334 );
335 }
336
337 return $title . ' ' .
338 $this->msg( 'parentheses' )->rawParams( $talk )->escaped() .
339 ' ' .
340 $this->msg( 'parentheses' )->rawParams( $translation )->escaped();
341
342 case 'am_default' :
343 case 'am_actual' :
344 return Sanitizer::escapeHtmlAllowEntities( $value );
345 }
346
347 return '';
348 }
349
350 function formatRow( $row ) {
351 // Do all the normal stuff
352 $s = parent::formatRow( $row );
353
354 // But if there's a customised message, add that too.
355 if ( $row->am_customised ) {
356 $s .= Xml::openElement( 'tr', $this->getRowAttrs( $row, true ) );
357 $formatted = strval( $this->formatValue( 'am_actual', $row->am_actual ) );
358
359 if ( $formatted === '' ) {
360 $formatted = '&#160;';
361 }
362
363 $s .= Xml::tags( 'td', $this->getCellAttrs( 'am_actual', $row->am_actual ), $formatted )
364 . "</tr>\n";
365 }
366
367 return $s;
368 }
369
370 function getRowAttrs( $row, $isSecond = false ) {
371 $arr = [];
372
373 if ( $row->am_customised ) {
374 $arr['class'] = 'allmessages-customised';
375 }
376
377 if ( !$isSecond ) {
378 $arr['id'] = Sanitizer::escapeIdForAttribute(
379 'msg_' . $this->getLanguage()->lcfirst( $row->am_title )
380 );
381 }
382
383 return $arr;
384 }
385
386 function getCellAttrs( $field, $value ) {
387 if ( $this->mCurrentRow->am_customised && $field === 'am_title' ) {
388 return [ 'rowspan' => '2', 'class' => $field ];
389 } elseif ( $field === 'am_title' ) {
390 return [ 'class' => $field ];
391 } else {
392 return [
393 'lang' => $this->lang->getHtmlCode(),
394 'dir' => $this->lang->getDir(),
395 'class' => $field
396 ];
397 }
398 }
399
400 // This is not actually used, as getStartBody is overridden above
401 function getFieldNames() {
402 return [
403 'am_title' => $this->msg( 'allmessagesname' )->text(),
404 'am_default' => $this->msg( 'allmessagesdefault' )->text()
405 ];
406 }
407
408 function getTitle() {
409 return SpecialPage::getTitleFor( 'Allmessages', false );
410 }
411
412 function isFieldSortable( $x ) {
413 return false;
414 }
415
416 function getDefaultSort() {
417 return '';
418 }
419
420 function getQueryInfo() {
421 return '';
422 }
423
424}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e....
static getCustomisedStatuses( $messageNames, $langcode='en', $foreign=false)
Determine which of the MediaWiki and MediaWiki_talk namespace pages exist.
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
getDefaultSort()
The database field name used as a default sort order.
getCellAttrs( $field, $value)
Get any extra attributes to be applied to the given cell.
__construct( $page, $conds, $langObj=null)
isFieldSortable( $x)
Return true if the named field should be sortable by the UI, false otherwise.
getRowAttrs( $row, $isSecond=false)
formatValue( $field, $value)
Format a table cell.
getFieldNames()
An array mapping database field names to a textual description of the field name, for use in the tabl...
reallyDoQuery( $offset, $limit, $descending)
This function normally does a database query to get the results; we need to make a pretend result usi...
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
const DIR_DESCENDING
Internationalisation code.
Definition Language.php:35
static makeExternalLink( $url, $text, $escape=true, $linktype='', $attribs=[], $title=null)
Make an external link.
Definition Linker.php:843
MediaWikiServices is the service locator for the application scope of MediaWiki.
Table-based display with a user-selectable sort order.
getHiddenFields( $blacklist=[])
Get <input type="hidden"> elements for use in a method="get" form.
getLimitSelect( $attribs=[])
Get a "<select>" element which has options for each of the allowed limits.
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
$res
Definition database.txt:21
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 and the local content language as $wgContLang
Definition design.txt:57
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition design.txt:18
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
const NS_MEDIAWIKI_TALK
Definition Defines.php:83
const NS_MEDIAWIKI
Definition Defines.php:82
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
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition hooks.txt:1993
either a plain
Definition hooks.txt:2056
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:864
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 noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Definition hooks.txt:2056
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
const DB_REPLICA
Definition defines.php:25