Manual:フック/MovePageCheckPermissions
Appearance
MovePageCheckPermissions | |
---|---|
バージョン 1.25.0 から利用可能 Specify whether the user is allowed to move the page. | |
関数の定義: | public static function onMovePageCheckPermissions( Title $oldTitle, Title $newTitle, User $user, $reason, Status $status ) { ... }
|
フックのアタッチ: | extension.json 内:
{
"Hooks": {
"MovePageCheckPermissions": "MediaWiki\\Extension\\MyExtension\\Hooks::onMovePageCheckPermissions"
}
}
|
呼び出し元: | ファイル: MovePage.php |
インターフェイス: | MovePageCheckPermissionsHook.php |
フックの設定についての詳細情報は Manual:フック を参照してください。
このフックを使用する拡張機能の例については、Category:MovePageCheckPermissions extensions/ja を参照してください。
詳細
- $oldTitle: Title object of the current (old) location
- $newTitle: Title object of the new location
- $user: User making the move
- $reason: string of the reason provided by the user
- $status: Status object to pass error messages to