mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-12 08:49:28 +00:00
59ff4aed5d
Bug: T178283 Co-Authored-By: Matěj Suchánek <matejsuchanek97@gmail.com> Change-Id: I89776eff2fc420b1fe3e2c3b88671749fadb57b4
54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
|
|
|
class AbuseFilterModifyLogFormatter extends LogFormatter {
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getMessageKey() {
|
|
$subtype = $this->entry->getSubtype();
|
|
// Messages that can be used here:
|
|
// * abusefilter-logentry-create
|
|
// * abusefilter-logentry-modify
|
|
return "abusefilter-logentry-$subtype";
|
|
}
|
|
|
|
/**
|
|
* @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;
|
|
}
|
|
|
|
}
|