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;
|
2023-12-10 19:03:19 +00:00
|
|
|
use MediaWiki\User\User;
|
2020-06-03 00:43:22 +00:00
|
|
|
use RecentChange;
|
|
|
|
|
|
|
|
interface AbuseFilterGenerateUserVarsHook {
|
|
|
|
/**
|
|
|
|
* Hook runner for the `AbuseFilter-generateUserVars` hook
|
|
|
|
*
|
|
|
|
* Allows altering the variables generated for a specific user
|
|
|
|
*
|
2021-01-02 14:01:00 +00:00
|
|
|
* @param VariableHolder $vars
|
2020-06-03 00:43:22 +00:00
|
|
|
* @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
|
|
|
|
*/
|
2021-03-06 17:18:07 +00:00
|
|
|
public function onAbuseFilter_generateUserVars(
|
2021-01-02 14:01:00 +00:00
|
|
|
VariableHolder $vars,
|
2020-06-03 00:43:22 +00:00
|
|
|
User $user,
|
|
|
|
?RecentChange $rc
|
|
|
|
);
|
|
|
|
}
|