mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-28 16:00:28 +00:00
17 lines
580 B
PHP
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 );
|
||
|
}
|