mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-15 10:15:24 +00:00
9c1868d55e
Bug: T254306 Change-Id: Ic5c82a367e34135bbc0f00ece5aeef4f2d92881b
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 );
|
|
}
|