mediawiki-extensions-AbuseF.../includes/Hooks/AbuseFilterInterceptVariableHook.php
DannyS712 9c1868d55e Update hook calling to use new HookContainer
Bug: T254306
Change-Id: Ic5c82a367e34135bbc0f00ece5aeef4f2d92881b
2020-09-17 10:05:45 +00:00

27 lines
826 B
PHP

<?php
namespace MediaWiki\Extension\AbuseFilter\Hooks;
use AbuseFilterVariableHolder;
interface AbuseFilterInterceptVariableHook {
/**
* Hook runner for the `AbuseFilter-interceptVariable` hook
*
* Called before a variable is set in AFComputedVariable::compute 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 AbuseFilterVariableHolder $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,
AbuseFilterVariableHolder $vars,
array $parameters,
&$result
);
}