Extension:CheckUser/Hooks/CheckUserInsertForRecentChange

From Linux Web Expert

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
CheckUserInsertForRecentChange
Available from version 1.23.0 (Gerrit change 117246)
Allows external processing of rows inserted for recent change events
Define function:
public static function onCheckUserInsertForRecentChange( RecentChange $rc, array &$rcRow ) { ... }
Attach hook:
$wgHooks['CheckUserInsertForRecentChange'][] = 'MyExtensionHooks::onCheckUserInsertForRecentChange';
Called from:File(s): CheckUser / includes/CheckUserHooks.php
Function(s): updateCheckUserData

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

Allows extensions to intercept and modify the data inserted to cu_changes table when triggered by a RecentChange insert.

Parameters

  • $rc: The database row triggering the insert, instance of RecentChange
  • &$rcRow: An array The database row to be inserted to cu_changes table