2020-06-03 00:43:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
|
|
|
|
2021-01-02 14:01:00 +00:00
|
|
|
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
|
2020-06-03 00:43:22 +00:00
|
|
|
use RecentChange;
|
|
|
|
|
|
|
|
interface AbuseFilterGenerateGenericVarsHook {
|
|
|
|
/**
|
|
|
|
* Hook runner for the `AbuseFilter-generateGenericVars` hook
|
|
|
|
*
|
|
|
|
* Allows altering generic variables, i.e. independent from page and user
|
|
|
|
*
|
2021-01-02 14:01:00 +00:00
|
|
|
* @param VariableHolder $vars
|
2020-06-03 00:43:22 +00:00
|
|
|
* @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
|
|
|
|
*/
|
2022-07-31 14:34:07 +00:00
|
|
|
public function onAbuseFilter_generateGenericVars(
|
2021-01-02 14:01:00 +00:00
|
|
|
VariableHolder $vars,
|
2020-06-03 00:43:22 +00:00
|
|
|
?RecentChange $rc
|
|
|
|
);
|
|
|
|
}
|