Manual:Hooks/NewDifferenceEngine
From MediaWiki.org
| NewDifferenceEngine | |
|---|---|
| Available from version 1.15.0 Called when a new DifferenceEngine object is made. |
|
*Define function: |
function fnMyHook( $title, &$oldId, &$newId, $old, $new ) { ... }
|
*Attach hook: |
$wgHooks['NewDifferenceEngine'][] = 'MyExtensionHooks::someExample'; |
| Called from: | DifferenceEngine.php |
*For more information about attaching hooks, see Manual:Hooks.
*For examples of extensions using this hook, see Category:NewDifferenceEngine extensions.
[edit] Details
- $title: the diff page title (nullable)
- &$oldId: the actual old Id to use in the diff
- &$newId: the actual new Id to use in the diff (0 means current)
- $old: the ?old= param value from the url
- $new: the ?new= param value from the url