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

29 lines
837 B
PHP

<?php
namespace MediaWiki\Extension\AbuseFilter\Hooks;
use AbuseFilterVariableHolder;
use Title;
use User;
interface AbuseFilterShouldFilterActionHook {
/**
* Hook runner for the `AbuseFilterShouldFilterAction` hook
*
* Called before filtering an action. If the current action should not be filtered,
* return false and add a useful reason to $skipReasons.
*
* @param AbuseFilterVariableHolder $vars
* @param Title $title Title object target of the action
* @param User $user User object performer of the action
* @param array &$skipReasons Array of reasons why the action should be skipped
* @return bool|void True or no return value to continue or false to abort
*/
public function onAbuseFilterShouldFilterAction(
AbuseFilterVariableHolder $vars,
Title $title,
User $user,
array &$skipReasons
);
}