MediaWiki master
UploadLogFormatter.php
Go to the documentation of this file.
1<?php
31
32 protected function getParametersForApi() {
33 $entry = $this->entry;
35
36 static $map = [
37 'img_timestamp' => ':timestamp:img_timestamp',
38 ];
39 foreach ( $map as $index => $key ) {
40 if ( isset( $params[$index] ) ) {
41 $params[$key] = $params[$index];
42 unset( $params[$index] );
43 }
44 }
45
46 return $params;
47 }
48
49}
array $params
The job parameters.
Implements the default log formatting.
LogEntryBase $entry
This class formats upload log entries.
getParametersForApi()
Get the array of parameters, converted from legacy format if necessary.
getParameters()
Get the extra parameters stored for this message.