Page MenuHomeWickedGov Phorge

AbuseFilterInterceptVariableHook.php
No OneTemporary

Size
822 B
Referenced Files
None
Subscribers
None

AbuseFilterInterceptVariableHook.php

<?php
namespace MediaWiki\Extension\AbuseFilter\Hooks;
use MediaWiki\Extension\AbuseFilter\Variables\VariableHolder;
interface AbuseFilterInterceptVariableHook {
/**
* Hook runner for the `AbuseFilter-interceptVariable` hook
*
* Called before a lazy-loaded variable is computed to be able to set
* it before the core code runs. Return false to make the function return right after.
*
* @param string $method Method to generate the variable
* @param VariableHolder $vars
* @param array $parameters Parameters with data to compute the value
* @param mixed &$result Result of the computation
* @return bool|void True or no return value to continue or false to abort
*/
public function onAbuseFilter_interceptVariable(
string $method,
VariableHolder $vars,
array $parameters,
&$result
);
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Jul 3, 21:45 (11 h, 50 s)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
54/78/989d7cf79d355ebfae9645a3c036
Default Alt Text
AbuseFilterInterceptVariableHook.php (822 B)

Event Timeline