Extension:AbuseFilter/Hooks/AbuseFilterLogProtectedVariableValueAccess

Category:Extension hooks#AbuseFilterLogProtectedVariableValueAccess
AbuseFilterLogProtectedVariableValueAccess
Available from version 1.44
Called when a user views the value of a protected variable. Can be used to divert access logs from the AbuseFilter to a different log.
Define function:
public static function onAbuseFilterLogProtectedVariableValueAccess( UserIdentity $performer, string $target, string $action, bool $shouldDebounce, int $timestamp, array $params ) { ... }
Attach hook:
$wgHooks['AbuseFilterLogProtectedVariableValueAccess'][] = 'MyExtensionHooks::onAbuseFilterLogProtectedVariableValueAccess';
Called from:File(s): Category:Extension hooks provided by AbuseFilterAbuseFilter /

For more information about attaching hooks, see Manual:Hooks .
For examples of other extensions using this hook, see Category:AbuseFilterLogProtectedVariableValueAccess extensions.

Category:Extension hooks Category:Extension hooks provided by AbuseFilter