mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-15 10:15:24 +00:00
c5d19577a4
The hook names contain a dash, which is mapped to an underscore by the hook runner (see Ie8c8fb603b33ff95c8f8d52f392227f147c528d8), and the previous method names weren't matching this. Follow-up: Ic5c82a367e34135bbc0f00ece5aeef4f2d92881b Change-Id: Ie80b62c49b2f4aaea49d5a1883f513348689d16a
29 lines
804 B
PHP
29 lines
804 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
|
|
|
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
|
|
use RecentChange;
|
|
use Title;
|
|
|
|
interface AbuseFilterGenerateTitleVarsHook {
|
|
/**
|
|
* Hook runner for the `AbuseFilter-generateTitleVars` hook
|
|
*
|
|
* Allows altering the variables generated for a title
|
|
*
|
|
* @param VariableHolder $vars
|
|
* @param Title $title
|
|
* @param string $prefix Variable name prefix
|
|
* @param ?RecentChange $rc If the variables should be generated for an RC entry,
|
|
* this is the entry. Null if it's for the current action being filtered.
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onAbuseFilter_generateTitleVars(
|
|
VariableHolder $vars,
|
|
Title $title,
|
|
string $prefix,
|
|
?RecentChange $rc
|
|
);
|
|
}
|