2020-06-03 00:43:22 +00:00
|
|
|
<?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
|
|
|
|
*/
|
2021-03-06 17:18:07 +00:00
|
|
|
public function onAbuseFilter_deprecatedVariables( array &$deprecatedVariables );
|
2020-06-03 00:43:22 +00:00
|
|
|
}
|