Manual:フック/NewDifferenceEngine
Appearance
NewDifferenceEngine | |
---|---|
バージョン 1.15.0 から利用可能 Called when a new DifferenceEngine object is made. | |
関数の定義: | public static function onNewDifferenceEngine( $title, &$oldId, &$newId, $old, $new ) { ... }
|
フックのアタッチ: | extension.json 内:
{
"Hooks": {
"NewDifferenceEngine": "MediaWiki\\Extension\\MyExtension\\Hooks::onNewDifferenceEngine"
}
}
|
呼び出し元: | ファイル: diff/DifferenceEngine.php |
インターフェイス: | NewDifferenceEngineHook.php |
フックの設定についての詳細情報は Manual:フック を参照してください。
このフックを使用する拡張機能の例については、Category:NewDifferenceEngine extensions/ja を参照してください。
詳細
- $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