mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-16 02:30:02 +00:00
27 lines
729 B
PHP
27 lines
729 B
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
||
|
|
||
|
use AbuseFilterVariableHolder;
|
||
|
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
|
||
|
);
|
||
|
}
|