mediawiki-extensions-AbuseF.../includes/Hooks/AbuseFilterFilterActionHook.php
Daimona Eaytoy c5d19577a4 Fix method names of hook interfaces
The hook names contain a dash, which is mapped to an underscore by the
hook runner (see Ie8c8fb603b33ff95c8f8d52f392227f147c528d8), and the
previous method names weren't matching this.

Follow-up: Ic5c82a367e34135bbc0f00ece5aeef4f2d92881b

Change-Id: Ie80b62c49b2f4aaea49d5a1883f513348689d16a
2021-03-09 17:03:14 +00:00

27 lines
832 B
PHP

<?php
namespace MediaWiki\Extension\AbuseFilter\Hooks;
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
use Title;
interface AbuseFilterFilterActionHook {
/**
* Hook runner for the `AbuseFilter-filterAction` hook
*
* DEPRECATED! Use AbuseFilterAlterVariables instead.
*
* Allows overwriting of abusefilter variables in AbuseFilter::filterAction just before they're
* checked against filters. Note that you may specify custom variables in a saner way using other hooks:
* AbuseFilter-generateTitleVars, AbuseFilter-generateUserVars and AbuseFilter-generateGenericVars.
*
* @param VariableHolder &$vars
* @param Title $title
* @return bool|void True or no return value to continue or false to abort
*/
public function onAbuseFilter_filterAction(
VariableHolder &$vars,
Title $title
);
}