mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks
synced 2024-11-13 17:52:33 +00:00
422f0f6062
This also includes the unit test hooks Jenkings job will be added with I6ec2edf62b9 Change-Id: Id085db7096db420416e9fba72a65586d021f1c76
36 lines
746 B
PHP
36 lines
746 B
PHP
<?php
|
|
|
|
class EchoThanksFormatter extends EchoBasicFormatter {
|
|
|
|
/**
|
|
* @param $event EchoEvent
|
|
* @param $param
|
|
* @param $message Message
|
|
* @param $user User
|
|
*/
|
|
protected function processParam( $event, $param, $message, $user ) {
|
|
if ( $param === 'difflink' ) {
|
|
$eventData = $event->getExtra();
|
|
if ( !isset( $eventData['revid'] ) ) {
|
|
$message->params( '' );
|
|
return;
|
|
}
|
|
$this->setTitleLink(
|
|
$event,
|
|
$message,
|
|
array(
|
|
'class' => 'mw-echo-diff',
|
|
'linkText' => wfMessage( 'notification-thanks-diff-link' )->text(),
|
|
'param' => array(
|
|
'oldid' => $eventData['revid'],
|
|
'diff' => 'prev',
|
|
)
|
|
)
|
|
);
|
|
|
|
} else {
|
|
parent::processParam( $event, $param, $message, $user );
|
|
}
|
|
}
|
|
}
|