mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-12-01 00:56:26 +00:00
6e27a9ddb3
Change-Id: I20a7fe1a40255043ed0d125dee61ea6052dda69c
24 lines
714 B
PHP
24 lines
714 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
|
|
|
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
|
|
use RecentChange;
|
|
|
|
interface AbuseFilterGenerateGenericVarsHook {
|
|
/**
|
|
* Hook runner for the `AbuseFilter-generateGenericVars` hook
|
|
*
|
|
* Allows altering generic variables, i.e. independent from page and user
|
|
*
|
|
* @param VariableHolder $vars
|
|
* @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 onAbuseFilterGenerateGenericVars(
|
|
VariableHolder $vars,
|
|
?RecentChange $rc
|
|
);
|
|
}
|