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

24 lines
705 B
PHP

<?php
namespace MediaWiki\Extension\AbuseFilter\Hooks;
use AbuseFilterVariableHolder;
use RecentChange;
interface AbuseFilterGenerateGenericVarsHook {
/**
* Hook runner for the `AbuseFilter-generateGenericVars` hook
*
* Allows altering generic variables, i.e. independent from page and user
*
* @param AbuseFilterVariableHolder $vars
* @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 onAbuseFilterGenerateGenericVars(
AbuseFilterVariableHolder $vars,
?RecentChange $rc
);
}