mediawiki-extensions-AbuseF.../includes/Hooks/AbuseFilterGenerateTitleVarsHook.php
Daimona Eaytoy 6e27a9ddb3 Cleanup variables-related classes
Change-Id: I20a7fe1a40255043ed0d125dee61ea6052dda69c
2021-01-02 18:19:38 +01:00

29 lines
803 B
PHP

<?php
namespace MediaWiki\Extension\AbuseFilter\Hooks;
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
use RecentChange;
use Title;
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 onAbuseFilterGenerateTitleVars(
VariableHolder $vars,
Title $title,
string $prefix,
?RecentChange $rc
);
}