mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-15 18:19:38 +00:00
6e27a9ddb3
Change-Id: I20a7fe1a40255043ed0d125dee61ea6052dda69c
27 lines
821 B
PHP
27 lines
821 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
|
|
|
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
|
|
|
|
interface AbuseFilterInterceptVariableHook {
|
|
/**
|
|
* Hook runner for the `AbuseFilter-interceptVariable` hook
|
|
*
|
|
* Called before a lazy-loaded variable is computed to be able to set
|
|
* it before the core code runs. Return false to make the function return right after.
|
|
*
|
|
* @param string $method Method to generate the variable
|
|
* @param VariableHolder $vars
|
|
* @param array $parameters Parameters with data to compute the value
|
|
* @param mixed &$result Result of the computation
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onAbuseFilterInterceptVariable(
|
|
string $method,
|
|
VariableHolder $vars,
|
|
array $parameters,
|
|
&$result
|
|
);
|
|
}
|