Manual:Hooks/NewDifferenceEngine/pl
Appearance
| NewDifferenceEngine | |
|---|---|
| Dostępne od wersji version 1.15.0 Called when a new DifferenceEngine object is made. | |
| Zdefiniuj funkcję: | public static function onNewDifferenceEngine( $title, &$oldId, &$newId, $old, $new ) { ... }
|
| Dołącz hak: | W extension.json:
{
"Hooks": {
"NewDifferenceEngine": "MediaWiki\\Extension\\MyExtension\\Hooks::onNewDifferenceEngine"
}
}
|
| Called from: | Plik(i): diff/DifferenceEngine.php |
| Interface: | NewDifferenceEngineHook.php |
For more information about attaching hooks, see Podręcznik:Haki.
For examples of extensions using this hook, see Category:NewDifferenceEngine extensions/pl.
Szczegóły
- $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