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

17 lines
580 B
PHP

<?php
namespace MediaWiki\Extension\AbuseFilter\Hooks;
interface AbuseFilterDeprecatedVariablesHook {
/**
* Hook runner for the `AbuseFilter-deprecatedVariables` hook
*
* Allows adding deprecated variables. If a filter uses an old variable, the parser
* will automatically translate it to the new one.
*
* @param array &$deprecatedVariables deprecated variables, syntax: [ 'old_name' => 'new_name' ]
* @return bool|void True or no return value to continue or false to abort
*/
public function onAbuseFilterDeprecatedVariables( array &$deprecatedVariables );
}