2020-06-03 00:43:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
|
|
|
|
2021-01-02 13:41:31 +00:00
|
|
|
use MediaWiki\Extension\AbuseFilter\Variables\AbuseFilterVariableHolder;
|
2020-06-03 00:43:22 +00:00
|
|
|
use RecentChange;
|
|
|
|
use User;
|
|
|
|
|
|
|
|
interface AbuseFilterGenerateUserVarsHook {
|
|
|
|
/**
|
|
|
|
* Hook runner for the `AbuseFilter-generateUserVars` hook
|
|
|
|
*
|
|
|
|
* Allows altering the variables generated for a specific user
|
|
|
|
*
|
|
|
|
* @param AbuseFilterVariableHolder $vars
|
|
|
|
* @param User $user
|
|
|
|
* @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 onAbuseFilterGenerateUserVars(
|
|
|
|
AbuseFilterVariableHolder $vars,
|
|
|
|
User $user,
|
|
|
|
?RecentChange $rc
|
|
|
|
);
|
|
|
|
}
|