3 * Contains classes for formatting log entries
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @author Niklas Laxström
22 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
27 * Implements the default log formatting.
28 * Can be overridden by subclassing and setting
29 * $wgLogActionsHandlers['type/subtype'] = 'class'; or
30 * $wgLogActionsHandlers['type/*'] = 'class';
34 // Audience options for viewing usernames, comments, and actions
36 const FOR_THIS_USER
= 2;
41 * Constructs a new formatter suitable for given entry.
42 * @param $entry LogEntry
43 * @return LogFormatter
45 public static function newFromEntry( LogEntry
$entry ) {
46 global $wgLogActionsHandlers;
47 $fulltype = $entry->getFullType();
48 $wildcard = $entry->getType() . '/*';
51 if ( isset( $wgLogActionsHandlers[$fulltype] ) ) {
52 $handler = $wgLogActionsHandlers[$fulltype];
53 } elseif ( isset( $wgLogActionsHandlers[$wildcard] ) ) {
54 $handler = $wgLogActionsHandlers[$wildcard];
57 if ( $handler !== '' && is_string( $handler ) && class_exists( $handler ) ) {
58 return new $handler( $entry );
61 return new LegacyLogFormatter( $entry );
65 * Handy shortcut for constructing a formatter directly from
68 * @see DatabaseLogEntry::getSelectQueryData
69 * @return LogFormatter
71 public static function newFromRow( $row ) {
72 return self
::newFromEntry( DatabaseLogEntry
::newFromRow( $row ) );
80 /// Integer constant for handling log_deleted
81 protected $audience = self
::FOR_PUBLIC
;
83 /// Whether to output user tool links
84 protected $linkFlood = false;
87 * Set to true if we are constructing a message text that is going to
88 * be included in page history or send to IRC feed. Links are replaced
89 * with plaintext or with [[pagename]] kind of syntax, that is parsed
90 * by page histories and IRC feeds.
93 protected $plaintext = false;
95 protected $irctext = false;
97 protected function __construct( LogEntry
$entry ) {
98 $this->entry
= $entry;
99 $this->context
= RequestContext
::getMain();
103 * Replace the default context
104 * @param $context IContextSource
106 public function setContext( IContextSource
$context ) {
107 $this->context
= $context;
111 * Set the visibility restrictions for displaying content.
112 * If set to public, and an item is deleted, then it will be replaced
113 * with a placeholder even if the context user is allowed to view it.
114 * @param $audience integer self::FOR_THIS_USER or self::FOR_PUBLIC
116 public function setAudience( $audience ) {
117 $this->audience
= ( $audience == self
::FOR_THIS_USER
)
118 ? self
::FOR_THIS_USER
123 * Check if a log item can be displayed
124 * @param $field integer LogPage::DELETED_* constant
127 protected function canView( $field ) {
128 if ( $this->audience
== self
::FOR_THIS_USER
) {
129 return LogEventsList
::userCanBitfield(
130 $this->entry
->getDeleted(), $field, $this->context
->getUser() );
132 return !$this->entry
->isDeleted( $field );
137 * If set to true, will produce user tool links after
138 * the user name. This should be replaced with generic
140 * @param $value boolean
142 public function setShowUserToolLinks( $value ) {
143 $this->linkFlood
= $value;
147 * Ugly hack to produce plaintext version of the message.
148 * Usually you also want to set extraneous request context
149 * to avoid formatting for any particular user.
150 * @see getActionText()
151 * @return string text
153 public function getPlainActionText() {
154 $this->plaintext
= true;
155 $text = $this->getActionText();
156 $this->plaintext
= false;
161 * Even uglier hack to maintain backwards compatibilty with IRC bots
163 * @see getActionText()
164 * @return string text
166 public function getIRCActionComment() {
167 $actionComment = $this->getIRCActionText();
168 $comment = $this->entry
->getComment();
170 if ( $comment != '' ) {
171 if ( $actionComment == '' ) {
172 $actionComment = $comment;
174 $actionComment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $comment;
178 return $actionComment;
182 * Even uglier hack to maintain backwards compatibilty with IRC bots
184 * @see getActionText()
185 * @return string text
187 public function getIRCActionText() {
188 $this->plaintext
= true;
189 $this->irctext
= true;
191 $entry = $this->entry
;
192 $parameters = $entry->getParameters();
193 // @see LogPage::actionText()
194 // Text of title the action is aimed at.
195 $target = $entry->getTarget()->getPrefixedText() ;
197 switch( $entry->getType() ) {
199 switch( $entry->getSubtype() ) {
201 $movesource = $parameters['4::target'];
202 $text = wfMessage( '1movedto2' )
203 ->rawParams( $target, $movesource )->inContentLanguage()->escaped();
206 $movesource = $parameters['4::target'];
207 $text = wfMessage( '1movedto2_redir' )
208 ->rawParams( $target, $movesource )->inContentLanguage()->escaped();
210 case 'move-noredirect':
212 case 'move_redir-noredirect':
218 switch( $entry->getSubtype() ) {
220 $text = wfMessage( 'deletedarticle' )
221 ->rawParams( $target )->inContentLanguage()->escaped();
224 $text = wfMessage( 'undeletedarticle' )
225 ->rawParams( $target )->inContentLanguage()->escaped();
227 //case 'revision': // Revision deletion
228 //case 'event': // Log deletion
229 // see https://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/LogPage.php?&pathrev=97044&r1=97043&r2=97044
235 // https://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/PatrolLog.php?&pathrev=97495&r1=97494&r2=97495
236 // Create a diff link to the patrolled revision
237 if ( $entry->getSubtype() === 'patrol' ) {
238 $diffLink = htmlspecialchars(
239 wfMessage( 'patrol-log-diff', $parameters['4::curid'] )
240 ->inContentLanguage()->text() );
241 $text = wfMessage( 'patrol-log-line', $diffLink, "[[$target]]", "" )
242 ->inContentLanguage()->text();
249 switch( $entry->getSubtype() ) {
251 $text = wfMessage( 'protectedarticle' )
252 ->rawParams( $target . ' ' . $parameters[0] )->inContentLanguage()->escaped();
255 $text = wfMessage( 'unprotectedarticle' )
256 ->rawParams( $target )->inContentLanguage()->escaped();
259 $text = wfMessage( 'modifiedarticleprotection' )
260 ->rawParams( $target . ' ' . $parameters[0] )->inContentLanguage()->escaped();
266 switch( $entry->getSubtype() ) {
269 $text = wfMessage( 'newuserlog-create-entry' )
270 ->inContentLanguage()->escaped();
273 $text = wfMessage( 'newuserlog-create2-entry' )
274 ->rawParams( $target )->inContentLanguage()->escaped();
277 $text = wfMessage( 'newuserlog-autocreate-entry' )
278 ->inContentLanguage()->escaped();
284 switch( $entry->getSubtype() ) {
286 $text = wfMessage( 'uploadedimage' )
287 ->rawParams( $target )->inContentLanguage()->escaped();
290 $text = wfMessage( 'overwroteimage' )
291 ->rawParams( $target )->inContentLanguage()->escaped();
297 // case 'suppress' --private log -- aaron (sign your messages so we know who to blame in a few years :-D)
300 if( is_null( $text ) ) {
301 $text = $this->getPlainActionText();
304 $this->plaintext
= false;
305 $this->irctext
= false;
310 * Gets the log action, including username.
311 * @return string HTML
313 public function getActionText() {
314 if ( $this->canView( LogPage
::DELETED_ACTION
) ) {
315 $element = $this->getActionMessage();
316 if ( $element instanceof Message
) {
317 $element = $this->plaintext ?
$element->text() : $element->escaped();
319 if ( $this->entry
->isDeleted( LogPage
::DELETED_ACTION
) ) {
320 $element = $this->styleRestricedElement( $element );
323 $performer = $this->getPerformerElement() . $this->msg( 'word-separator' )->text();
324 $element = $performer . $this->getRestrictedElement( 'rev-deleted-event' );
331 * Returns a sentence describing the log action. Usually
332 * a Message object is returned, but old style log types
333 * and entries might return pre-escaped html string.
334 * @return Message|string pre-escaped html
336 protected function getActionMessage() {
337 $message = $this->msg( $this->getMessageKey() );
338 $message->params( $this->getMessageParameters() );
343 * Returns a key to be used for formatting the action sentence.
344 * Default is logentry-TYPE-SUBTYPE for modern logs. Legacy log
345 * types will use custom keys, and subclasses can also alter the
346 * key depending on the entry itself.
347 * @return string message key
349 protected function getMessageKey() {
350 $type = $this->entry
->getType();
351 $subtype = $this->entry
->getSubtype();
353 return "logentry-$type-$subtype";
357 * Returns extra links that comes after the action text, like "revert", etc.
361 public function getActionLinks() {
366 * Extracts the optional extra parameters for use in action messages.
367 * The array indexes start from number 3.
370 protected function extractParameters() {
371 $entry = $this->entry
;
374 if ( $entry->isLegacy() ) {
375 foreach ( $entry->getParameters() as $index => $value ) {
376 $params[$index +
3] = $value;
380 // Filter out parameters which are not in format #:foo
381 foreach ( $entry->getParameters() as $key => $value ) {
382 if ( strpos( $key, ':' ) === false ) continue;
383 list( $index, $type, $name ) = explode( ':', $key, 3 );
384 $params[$index - 1] = $value;
387 /* Message class doesn't like non consecutive numbering.
388 * Fill in missing indexes with empty strings to avoid
389 * incorrect renumbering.
391 if ( count( $params ) ) {
392 $max = max( array_keys( $params ) );
393 for ( $i = 4; $i < $max; $i++
) {
394 if ( !isset( $params[$i] ) ) {
403 * Formats parameters intented for action message from
404 * array of all parameters. There are three hardcoded
405 * parameters (array is zero-indexed, this list not):
406 * - 1: user name with premade link
407 * - 2: usable for gender magic function
408 * - 3: target page with premade link
411 protected function getMessageParameters() {
412 if ( isset( $this->parsedParameters
) ) {
413 return $this->parsedParameters
;
416 $entry = $this->entry
;
417 $params = $this->extractParameters();
418 $params[0] = Message
::rawParam( $this->getPerformerElement() );
419 $params[1] = $entry->getPerformer()->getName();
420 $params[2] = Message
::rawParam( $this->makePageLink( $entry->getTarget() ) );
422 // Bad things happens if the numbers are not in correct order
424 return $this->parsedParameters
= $params;
428 * Helper to make a link to the page, taking the plaintext
429 * value in consideration.
430 * @param $title Title the page
431 * @param $parameters array query parameters
434 protected function makePageLink( Title
$title = null, $parameters = array() ) {
435 if ( !$this->plaintext
) {
436 $link = Linker
::link( $title, null, array(), $parameters );
438 if ( !$title instanceof Title
) {
439 throw new MWException( "Expected title, got null" );
441 $link = '[[' . $title->getPrefixedText() . ']]';
447 * Provides the name of the user who performed the log action.
448 * Used as part of log action message or standalone, depending
449 * which parts of the log entry has been hidden.
452 public function getPerformerElement() {
453 if ( $this->canView( LogPage
::DELETED_USER
) ) {
454 $performer = $this->entry
->getPerformer();
455 $element = $this->makeUserLink( $performer );
456 if ( $this->entry
->isDeleted( LogPage
::DELETED_USER
) ) {
457 $element = $this->styleRestricedElement( $element );
460 $element = $this->getRestrictedElement( 'rev-deleted-user' );
467 * Gets the luser provided comment
468 * @return string HTML
470 public function getComment() {
471 if ( $this->canView( LogPage
::DELETED_COMMENT
) ) {
472 $comment = Linker
::commentBlock( $this->entry
->getComment() );
473 // No hard coded spaces thanx
474 $element = ltrim( $comment );
475 if ( $this->entry
->isDeleted( LogPage
::DELETED_COMMENT
) ) {
476 $element = $this->styleRestricedElement( $element );
479 $element = $this->getRestrictedElement( 'rev-deleted-comment' );
486 * Helper method for displaying restricted element.
487 * @param $message string
488 * @return string HTML or wikitext
490 protected function getRestrictedElement( $message ) {
491 if ( $this->plaintext
) {
492 return $this->msg( $message )->text();
495 $content = $this->msg( $message )->escaped();
496 $attribs = array( 'class' => 'history-deleted' );
497 return Html
::rawElement( 'span', $attribs, $content );
501 * Helper method for styling restricted element.
502 * @param $content string
503 * @return string HTML or wikitext
505 protected function styleRestricedElement( $content ) {
506 if ( $this->plaintext
) {
509 $attribs = array( 'class' => 'history-deleted' );
510 return Html
::rawElement( 'span', $attribs, $content );
514 * Shortcut for wfMessage which honors local context.
515 * @todo Would it be better to require replacing the global context instead?
519 protected function msg( $key ) {
520 return $this->context
->msg( $key );
523 protected function makeUserLink( User
$user ) {
524 if ( $this->plaintext
) {
525 $element = $user->getName();
527 $element = Linker
::userLink(
532 if ( $this->linkFlood
) {
533 $element .= Linker
::userToolLinksRedContribs(
536 $user->getEditCount()
544 * @return Array of titles that should be preloaded with LinkBatch.
546 public function getPreloadTitles() {
553 * This class formats all log entries for log types
554 * which have not been converted to the new system.
555 * This is not about old log entries which store
556 * parameters in a different format - the new
557 * LogFormatter classes have code to support formatting
561 class LegacyLogFormatter
extends LogFormatter
{
564 * Backward compatibility for extension changing the comment from
565 * the LogLine hook. This will be set by the first call on getComment(),
566 * then it might be modified by the hook when calling getActionLinks(),
567 * so that the modified value will be returned when calling getComment()
572 private $comment = null;
575 * Cache for the result of getActionLinks() so that it does not need to
576 * run multiple times depending on the order that getComment() and
577 * getActionLinks() are called.
581 private $revert = null;
583 public function getComment() {
584 if ( $this->comment
=== null ) {
585 $this->comment
= parent
::getComment();
588 // Make sure we execute the LogLine hook so that we immediately return
589 // the correct value.
590 if ( $this->revert
=== null ) {
591 $this->getActionLinks();
594 return $this->comment
;
597 protected function getActionMessage() {
598 $entry = $this->entry
;
599 $action = LogPage
::actionText(
601 $entry->getSubtype(),
603 $this->plaintext ?
null : $this->context
->getSkin(),
604 (array)$entry->getParameters(),
605 !$this->plaintext
// whether to filter [[]] links
608 $performer = $this->getPerformerElement();
609 if ( !$this->irctext
) {
610 $action = $performer . $this->msg( 'word-separator' )->text() . $action;
616 public function getActionLinks() {
617 if ( $this->revert
!== null ) {
618 return $this->revert
;
621 if ( $this->entry
->isDeleted( LogPage
::DELETED_ACTION
) ) {
622 return $this->revert
= '';
625 $title = $this->entry
->getTarget();
626 $type = $this->entry
->getType();
627 $subtype = $this->entry
->getSubtype();
629 // Show unblock/change block link
630 if ( ( $type == 'block' ||
$type == 'suppress' ) && ( $subtype == 'block' ||
$subtype == 'reblock' ) ) {
631 if ( !$this->context
->getUser()->isAllowed( 'block' ) ) {
637 SpecialPage
::getTitleFor( 'Unblock', $title->getDBkey() ),
638 $this->msg( 'unblocklink' )->escaped()
641 SpecialPage
::getTitleFor( 'Block', $title->getDBkey() ),
642 $this->msg( 'change-blocklink' )->escaped()
645 return $this->msg( 'parentheses' )->rawParams(
646 $this->context
->getLanguage()->pipeList( $links ) )->escaped();
647 // Show change protection link
648 } elseif ( $type == 'protect' && ( $subtype == 'protect' ||
$subtype == 'modify' ||
$subtype == 'unprotect' ) ) {
650 Linker
::link( $title,
651 $this->msg( 'hist' )->escaped(),
654 'action' => 'history',
655 'offset' => $this->entry
->getTimestamp()
659 if ( $this->context
->getUser()->isAllowed( 'protect' ) ) {
660 $links[] = Linker
::linkKnown(
662 $this->msg( 'protect_change' )->escaped(),
664 array( 'action' => 'protect' )
667 return $this->msg( 'parentheses' )->rawParams(
668 $this->context
->getLanguage()->pipeList( $links ) )->escaped();
670 } elseif( $type == 'merge' && $subtype == 'merge' ) {
671 if ( !$this->context
->getUser()->isAllowed( 'mergehistory' ) ) {
675 $params = $this->extractParameters();
676 $revert = Linker
::linkKnown(
677 SpecialPage
::getTitleFor( 'MergeHistory' ),
678 $this->msg( 'revertmerge' )->escaped(),
681 'target' => $params[3],
682 'dest' => $title->getPrefixedDBkey(),
683 'mergepoint' => $params[4]
686 return $this->msg( 'parentheses' )->rawParams( $revert )->escaped();
689 // Do nothing. The implementation is handled by the hook modifiying the
690 // passed-by-ref parameters. This also changes the default value so that
691 // getComment() and getActionLinks() do not call them indefinitely.
694 // This is to populate the $comment member of this instance so that it
695 // can be modified when calling the hook just below.
696 if ( $this->comment
=== null ) {
700 $params = $this->entry
->getParameters();
702 wfRunHooks( 'LogLine', array( $type, $subtype, $title, $params,
703 &$this->comment
, &$this->revert
, $this->entry
->getTimestamp() ) );
705 return $this->revert
;
710 * This class formats move log entries.
713 class MoveLogFormatter
extends LogFormatter
{
714 public function getPreloadTitles() {
715 $params = $this->extractParameters();
716 return array( Title
::newFromText( $params[3] ) );
719 protected function getMessageKey() {
720 $key = parent
::getMessageKey();
721 $params = $this->getMessageParameters();
722 if ( isset( $params[4] ) && $params[4] === '1' ) {
723 $key .= '-noredirect';
728 protected function getMessageParameters() {
729 $params = parent
::getMessageParameters();
730 $oldname = $this->makePageLink( $this->entry
->getTarget(), array( 'redirect' => 'no' ) );
731 $newname = $this->makePageLink( Title
::newFromText( $params[3] ) );
732 $params[2] = Message
::rawParam( $oldname );
733 $params[3] = Message
::rawParam( $newname );
737 public function getActionLinks() {
738 if ( $this->entry
->isDeleted( LogPage
::DELETED_ACTION
) // Action is hidden
739 ||
$this->entry
->getSubtype() !== 'move'
740 ||
!$this->context
->getUser()->isAllowed( 'move' ) )
745 $params = $this->extractParameters();
746 $destTitle = Title
::newFromText( $params[3] );
751 $revert = Linker
::linkKnown(
752 SpecialPage
::getTitleFor( 'Movepage' ),
753 $this->msg( 'revertmove' )->escaped(),
756 'wpOldTitle' => $destTitle->getPrefixedDBkey(),
757 'wpNewTitle' => $this->entry
->getTarget()->getPrefixedDBkey(),
758 'wpReason' => $this->msg( 'revertmove' )->inContentLanguage()->text(),
762 return $this->msg( 'parentheses' )->rawParams( $revert )->escaped();
767 * This class formats delete log entries.
770 class DeleteLogFormatter
extends LogFormatter
{
771 protected function getMessageKey() {
772 $key = parent
::getMessageKey();
773 if ( in_array( $this->entry
->getSubtype(), array( 'event', 'revision' ) ) ) {
774 if ( count( $this->getMessageParameters() ) < 5 ) {
775 return "$key-legacy";
781 protected function getMessageParameters() {
782 if ( isset( $this->parsedParametersDeleteLog
) ) {
783 return $this->parsedParametersDeleteLog
;
786 $params = parent
::getMessageParameters();
787 $subtype = $this->entry
->getSubtype();
788 if ( in_array( $subtype, array( 'event', 'revision' ) ) ) {
790 ($subtype === 'event' && count( $params ) === 6 ) ||
791 ($subtype === 'revision' && isset( $params[3] ) && $params[3] === 'revision' )
793 $paramStart = $subtype === 'revision' ?
4 : 3;
795 $old = $this->parseBitField( $params[$paramStart+
1] );
796 $new = $this->parseBitField( $params[$paramStart+
2] );
797 list( $hid, $unhid, $extra ) = RevisionDeleter
::getChanges( $new, $old );
799 foreach ( $hid as $v ) {
800 $changes[] = $this->msg( "$v-hid" )->plain();
802 foreach ( $unhid as $v ) {
803 $changes[] = $this->msg( "$v-unhid" )->plain();
805 foreach ( $extra as $v ) {
806 $changes[] = $this->msg( $v )->plain();
808 $changeText = $this->context
->getLanguage()->listToText( $changes );
811 $newParams = array_slice( $params, 0, 3 );
812 $newParams[3] = $changeText;
813 $count = count( explode( ',', $params[$paramStart] ) );
814 $newParams[4] = $this->context
->getLanguage()->formatNum( $count );
815 return $this->parsedParametersDeleteLog
= $newParams;
817 return $this->parsedParametersDeleteLog
= array_slice( $params, 0, 3 );
821 return $this->parsedParametersDeleteLog
= $params;
824 protected function parseBitField( $string ) {
825 // Input is like ofield=2134 or just the number
826 if ( strpos( $string, 'field=' ) === 1 ) {
827 list( , $field ) = explode( '=', $string );
830 return (int) $string;
834 public function getActionLinks() {
835 $user = $this->context
->getUser();
836 if ( !$user->isAllowed( 'deletedhistory' ) ||
$this->entry
->isDeleted( LogPage
::DELETED_ACTION
) ) {
840 switch ( $this->entry
->getSubtype() ) {
841 case 'delete': // Show undelete link
842 if( $user->isAllowed( 'undelete' ) ) {
843 $message = 'undeletelink';
845 $message = 'undeleteviewlink';
847 $revert = Linker
::linkKnown(
848 SpecialPage
::getTitleFor( 'Undelete' ),
849 $this->msg( $message )->escaped(),
851 array( 'target' => $this->entry
->getTarget()->getPrefixedDBkey() )
853 return $this->msg( 'parentheses' )->rawParams( $revert )->escaped();
855 case 'revision': // If an edit was hidden from a page give a review link to the history
856 $params = $this->extractParameters();
857 if ( !isset( $params[3] ) ||
!isset( $params[4] ) ) {
861 // Different revision types use different URL params...
863 // This is a CSV of the IDs
864 $ids = explode( ',', $params[4] );
868 // If there's only one item, we can show a diff link
869 if ( count( $ids ) == 1 ) {
870 // Live revision diffs...
871 if ( $key == 'oldid' ||
$key == 'revision' ) {
872 $links[] = Linker
::linkKnown(
873 $this->entry
->getTarget(),
874 $this->msg( 'diff' )->escaped(),
877 'diff' => intval( $ids[0] ),
881 // Deleted revision diffs...
882 } elseif ( $key == 'artimestamp' ||
$key == 'archive' ) {
883 $links[] = Linker
::linkKnown(
884 SpecialPage
::getTitleFor( 'Undelete' ),
885 $this->msg( 'diff' )->escaped(),
888 'target' => $this->entry
->getTarget()->getPrefixedDBKey(),
890 'timestamp' => $ids[0]
896 // View/modify link...
897 $links[] = Linker
::linkKnown(
898 SpecialPage
::getTitleFor( 'Revisiondelete' ),
899 $this->msg( 'revdel-restore' )->escaped(),
902 'target' => $this->entry
->getTarget()->getPrefixedText(),
904 'ids' => implode( ',', $ids ),
908 return $this->msg( 'parentheses' )->rawParams(
909 $this->context
->getLanguage()->pipeList( $links ) )->escaped();
911 case 'event': // Hidden log items, give review link
912 $params = $this->extractParameters();
913 if ( !isset( $params[3] ) ) {
916 // This is a CSV of the IDs
918 // Link to each hidden object ID, $params[1] is the url param
919 $revert = Linker
::linkKnown(
920 SpecialPage
::getTitleFor( 'Revisiondelete' ),
921 $this->msg( 'revdel-restore' )->escaped(),
924 'target' => $this->entry
->getTarget()->getPrefixedText(),
929 return $this->msg( 'parentheses' )->rawParams( $revert )->escaped();
937 * This class formats patrol log entries.
940 class PatrolLogFormatter
extends LogFormatter
{
941 protected function getMessageKey() {
942 $key = parent
::getMessageKey();
943 $params = $this->getMessageParameters();
944 if ( isset( $params[5] ) && $params[5] ) {
950 protected function getMessageParameters() {
951 $params = parent
::getMessageParameters();
953 $target = $this->entry
->getTarget();
955 $revision = $this->context
->getLanguage()->formatNum( $oldid, true );
957 if ( $this->plaintext
) {
958 $revlink = $revision;
959 } elseif ( $target->exists() ) {
964 $revlink = Linker
::link( $target, htmlspecialchars( $revision ), array(), $query );
966 $revlink = htmlspecialchars( $revision );
969 $params[3] = Message
::rawParam( $revlink );
975 * This class formats new user log entries.
978 class NewUsersLogFormatter
extends LogFormatter
{
979 protected function getMessageParameters() {
980 $params = parent
::getMessageParameters();
981 if ( $this->entry
->getSubtype() === 'create2' ) {
982 if ( isset( $params[3] ) ) {
983 $target = User
::newFromId( $params[3] );
985 $target = User
::newFromName( $this->entry
->getTarget()->getText(), false );
987 $params[2] = Message
::rawParam( $this->makeUserLink( $target ) );
988 $params[3] = $target->getName();
993 public function getComment() {
994 $timestamp = wfTimestamp( TS_MW
, $this->entry
->getTimestamp() );
995 if ( $timestamp < '20080129000000' ) {
996 # Suppress $comment from old entries (before 2008-01-29),
997 # not needed and can contain incorrect links
1000 return parent
::getComment();
1003 public function getPreloadTitles() {
1004 if ( $this->entry
->getSubtype() === 'create2' ) {
1005 //add the user talk to LinkBatch for the userLink
1006 return array( Title
::makeTitle( NS_USER_TALK
, $this->entry
->getTarget()->getText() ) );