MediaWiki 1.41.2
WikiProcessor.php
Go to the documentation of this file.
1<?php
22
24
34
39 public function __invoke( array $record ) {
40 $record['extra']['host'] = wfHostname();
41 $record['extra']['wiki'] = WikiMap::getCurrentWikiId();
42 $record['extra']['mwversion'] = MW_VERSION;
43 $record['extra']['reqId'] = \MediaWiki\Request\WebRequest::getRequestId();
44 if ( wfIsCLI() && isset( $_SERVER['argv'] ) ) {
45 $record['extra']['cli_argv'] = implode( ' ', $_SERVER['argv'] );
46 }
47 return $record;
48 }
49
50}
wfIsCLI()
Check if we are running from the commandline.
const MW_VERSION
The running version of MediaWiki.
Definition Defines.php:36
wfHostname()
Get host name of the current machine, for use in error reporting.
Annotate log records with request-global metadata, such as the hostname, wiki / request ID,...
Tools for dealing with other locally-hosted wikis.
Definition WikiMap.php:31