2020-06-03 00:43:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
|
|
|
|
2021-01-02 14:01:00 +00:00
|
|
|
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
|
2023-08-19 17:49:36 +00:00
|
|
|
use MediaWiki\Title\Title;
|
2020-06-03 00:43:22 +00:00
|
|
|
use RecentChange;
|
|
|
|
|
|
|
|
interface AbuseFilterGenerateTitleVarsHook {
|
|
|
|
/**
|
|
|
|
* Hook runner for the `AbuseFilter-generateTitleVars` hook
|
|
|
|
*
|
|
|
|
* Allows altering the variables generated for a title
|
|
|
|
*
|
2021-01-02 14:01:00 +00:00
|
|
|
* @param VariableHolder $vars
|
2020-06-03 00:43:22 +00:00
|
|
|
* @param Title $title
|
|
|
|
* @param string $prefix Variable name prefix
|
|
|
|
* @param ?RecentChange $rc If the variables should be generated for an RC entry,
|
|
|
|
* this is the entry. Null if it's for the current action being filtered.
|
|
|
|
* @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_generateTitleVars(
|
2021-01-02 14:01:00 +00:00
|
|
|
VariableHolder $vars,
|
2020-06-03 00:43:22 +00:00
|
|
|
Title $title,
|
|
|
|
string $prefix,
|
|
|
|
?RecentChange $rc
|
|
|
|
);
|
|
|
|
}
|