mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-14 09:44:44 +00:00
cd7e9d31a7
Bug: T321681 Change-Id: I66fd9b70a5de06ac3c81bdf6a2a5bca64ed094c2
29 lines
820 B
PHP
29 lines
820 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Hooks;
|
|
|
|
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
|
|
use MediaWiki\Title\Title;
|
|
use RecentChange;
|
|
|
|
interface AbuseFilterGenerateTitleVarsHook {
|
|
/**
|
|
* Hook runner for the `AbuseFilter-generateTitleVars` hook
|
|
*
|
|
* Allows altering the variables generated for a title
|
|
*
|
|
* @param VariableHolder $vars
|
|
* @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
|
|
*/
|
|
public function onAbuseFilter_generateTitleVars(
|
|
VariableHolder $vars,
|
|
Title $title,
|
|
string $prefix,
|
|
?RecentChange $rc
|
|
);
|
|
}
|