MediaWiki REL1_34
WikiProcessor.php
Go to the documentation of this file.
1<?php
22
23use WikiMap;
24
33
38 public function __invoke( array $record ) {
39 global $wgVersion;
40 $record['extra']['host'] = wfHostname();
42 $record['extra']['mwversion'] = $wgVersion;
43 $record['extra']['reqId'] = \WebRequest::getRequestId();
44 if ( wfIsCLI() && isset( $_SERVER['argv'] ) ) {
45 $record['extra']['cli_argv'] = implode( ' ', $_SERVER['argv'] );
46 }
47 return $record;
48 }
49
50}
$wgVersion
MediaWiki version number.
wfHostname()
Get host name of the current machine, for use in error reporting.
wfIsCLI()
Check if we are running from the commandline.
Annotate log records with request-global metadata, such as the hostname, wiki / request ID,...
Helper tools for dealing with other locally-hosted wikis.
Definition WikiMap.php:29
static getWikiIdFromDbDomain( $domain)
Get the wiki ID of a database domain.
Definition WikiMap.php:268
static getCurrentWikiDbDomain()
Definition WikiMap.php:292