Manual:Hooks/DiffRevisionTools
This deprecated feature should no longer be used, but is still available for reasons of backwards compatibility. This feature was deprecated in version 1.35.0. Please see DiffTools for an alternative way to use this feature. |
DiffRevisionTools | |
---|---|
Available from version 1.21.0 (Gerrit change 52579) Override or extend the revision tools available from the diff view, i.e. undo, etc. | |
Define function: | public static function onDiffRevisionTools( Revision $newRev, &$links, $oldRev ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"DiffRevisionTools": "MyExtensionHooks::onDiffRevisionTools"
}
}
|
Called from: | File(s): diff/DifferenceEngine.php |
Interface: | DiffRevisionToolsHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:DiffRevisionTools extensions.
DetailsEdit
- $newRev: Revision object of the "new" revision
- &$links: Array of HTML links
- $oldRev: Revision object of the "old" revision (may be null) (since 1.23)