Manual:フック/getUserPermissionsErrors

This page is a translated version of the page Manual:Hooks/getUserPermissionsErrors and the translation is 29% complete.
getUserPermissionsErrors
バージョン 1.12.0 から利用可能
Add a permissions error when permissions errors are checked for.
関数の定義:
public static function ongetUserPermissionsErrors( $title, $user, $action, &$result ) { ... }
フックのアタッチ: extension.json 内:
{
	"Hooks": {
		"getUserPermissionsErrors": "MediaWiki\\Extension\\MyExtension\\Hooks::ongetUserPermissionsErrors"
	}
}
呼び出し元: ファイル: Permissions/PermissionManager.php
インターフェイス: getUserPermissionsErrorsHook.php

フックの設定についての詳細情報は Manual:フック を参照してください。
このフックを使用する拡張機能の例については、Category:getUserPermissionsErrors extensions/ja を参照してください。

詳細

  • $title - Title object being checked against
  • $user - Current user object
  • $action - Action being checked
  • &$result - User permissions error to add. $result can be set as a single error message key (string), or an array of error message keys when multiple messages are needed (although it seems to take an array as one message key with parameters?).


<span id="Differences_from_getUserPermissionsErrorsExpensive ">

getUserPermissionsErrorsExpensive との違い

Both hooks are typically run when checking for proper permissions in Title.php . When it is desirable to skip potentially expensive cascading permission checks, only getUserPermissionsErrors is run. This behavior is suitable for nonessential UI controls in common cases, but not for functional access control. This behavior may provide false positives, but should never provide a false negative.

関連項目