MediaWiki REL1_31
MergeLogFormatter.php
Go to the documentation of this file.
1<?php
31 public function getPreloadTitles() {
32 $params = $this->extractParameters();
33
34 return [ Title::newFromText( $params[3] ) ];
35 }
36
37 protected function getMessageParameters() {
38 $params = parent::getMessageParameters();
39 $oldname = $this->makePageLink( $this->entry->getTarget(), [ 'redirect' => 'no' ] );
40 $newname = $this->makePageLink( Title::newFromText( $params[3] ) );
41 $params[2] = Message::rawParam( $oldname );
42 $params[3] = Message::rawParam( $newname );
43 $params[4] = $this->context->getLanguage()
44 ->userTimeAndDate( $params[4], $this->context->getUser() );
45 return $params;
46 }
47
48 public function getActionLinks() {
49 if ( $this->entry->isDeleted( LogPage::DELETED_ACTION ) // Action is hidden
50 || !$this->context->getUser()->isAllowed( 'mergehistory' )
51 ) {
52 return '';
53 }
54
55 // Show unmerge link
56 $params = $this->extractParameters();
57 $revert = $this->getLinkRenderer()->makeKnownLink(
58 SpecialPage::getTitleFor( 'MergeHistory' ),
59 $this->msg( 'revertmerge' )->text(),
60 [],
61 [
62 'target' => $params[3],
63 'dest' => $this->entry->getTarget()->getPrefixedDBkey(),
64 'mergepoint' => $params[4],
65 'submitted' => 1 // show the revisions immediately
66 ]
67 );
68
69 return $this->msg( 'parentheses' )->rawParams( $revert )->escaped();
70 }
71
72 protected function getParametersForApi() {
75
76 static $map = [
77 '4:title:dest',
78 '5:timestamp:mergepoint',
79 '4::dest' => '4:title:dest',
80 '5::mergepoint' => '5:timestamp:mergepoint',
81 ];
82 foreach ( $map as $index => $key ) {
83 if ( isset( $params[$index] ) ) {
84 $params[$key] = $params[$index];
85 unset( $params[$index] );
86 }
87 }
88
89 return $params;
90 }
91}
Implements the default log formatting.
LogEntryBase $entry
msg( $key)
Shortcut for wfMessage which honors local context.
makePageLink(Title $title=null, $parameters=[], $html=null)
Helper to make a link to the page, taking the plaintext value in consideration.
extractParameters()
Extracts the optional extra parameters for use in action messages.
const DELETED_ACTION
Definition LogPage.php:32
This class formats merge log entries.
getActionLinks()
Returns extra links that comes after the action text, like "revert", etc.
getMessageParameters()
Formats parameters intented for action message from array of all parameters.
getParametersForApi()
Get the array of parameters, converted from legacy format if necessary.
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
returning false will NOT prevent logging a wrapping ErrorException instead of letting the login form give the generic error message that the account does not exist For when the account has been renamed or deleted or an array to pass a message key and parameters create2 Corresponds to logging log_action database field and which is displayed in the UI & $revert
Definition hooks.txt:2206
getParameters()
Get the extra parameters stored for this message.
$params