mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-24 14:13:54 +00:00
47 lines
956 B
PHP
47 lines
956 B
PHP
|
<?php
|
||
|
|
||
|
class AbuseFilterModifyLogFormatter extends LogFormatter {
|
||
|
|
||
|
protected function getMessageKey() {
|
||
|
return 'abusefilter-logentry-modify';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
protected function extractParameters() {
|
||
|
$parameters = $this->entry->getParameters();
|
||
|
if ( $this->entry->isLegacy() ) {
|
||
|
list( $historyId, $filterId ) = $parameters;
|
||
|
} else {
|
||
|
$historyId = $parameters['historyId'];
|
||
|
$filterId = $parameters['newId'];
|
||
|
}
|
||
|
|
||
|
$detailsTitle = SpecialPage::getTitleFor(
|
||
|
'AbuseFilter',
|
||
|
"history/$filterId/diff/prev/$historyId"
|
||
|
);
|
||
|
|
||
|
$params = [];
|
||
|
$params[3] = Message::rawParam(
|
||
|
$this->makePageLink(
|
||
|
$this->entry->getTarget(),
|
||
|
[],
|
||
|
$this->msg( 'abusefilter-log-detailedentry-local' )
|
||
|
->numParams( $filterId )->escaped()
|
||
|
)
|
||
|
);
|
||
|
$params[4] = Message::rawParam(
|
||
|
$this->makePageLink(
|
||
|
$detailsTitle,
|
||
|
[],
|
||
|
$this->msg( 'abusefilter-log-detailslink' )->escaped()
|
||
|
)
|
||
|
);
|
||
|
|
||
|
return $params;
|
||
|
}
|
||
|
|
||
|
}
|