Manual:Kancalar/userCan
Deprecated: Kullanımdan kaldırılmış bu özellik artık kullanılmamalıdır, ancak geriye dönük uyumluluk nedeniyle hala kullanılabilir.
|
userCan | |
---|---|
Available from sürüm 1.6.0 "Kullanıcı X'den Y'ye madde yapabilir" kontrolünü kesmek/tavsiye etmek için | |
İşlevi tanımlayın: | public static function onuserCan( $title, $user, $action, &$result ) { ... }
|
Ek kancası | extension.json sürümünde:
{
"Hooks": {
"userCan": "MediaWiki\\Extension\\MyExtension\\Hooks::onuserCan"
}
}
|
Çağrıdan: | Dosya(lar): Permissions/PermissionManager.php |
Arayüz: | userCanHook.php |
Kancaların takılmasıyla ilgili daha fazla bilgi için Manual:Hooks sayfasına bakın.
Bu kancayı kullanan uzantı örnekleri için Category:userCan extensions/tr sayfasına bakın.
Details
$title
reference to the title in question (see the use in $IP/includes/Title.php)
$user
reference to the current user (see the use in $IP/includes/Title.php)
$action
action (string) concerning the title in question
$result
- reference to the result propagated along the chain of hooks (see $IP/includes/Hooks.php)
- $result can be left untouched, or set to
true
orfalse
, according to the opinion of the particular hook function
- true means that the user is allowed, and false means that the $user is disallowed for the $action concerning the $title
- leaving untouched means that the hook function has no opinion about the situation
return value of the hook function
- the individual hook functions of the possibly nested list of hooks are processed in order of their natural occurrence, from the beginning until either the end of the list is reached, or the current hook function doesn't return
true
- a particular hook function on the list will stop the processing, if it returns
false
.
intentional side effect of the chain of hook function
- $result given by reference to each hook function contains the resulting opinion of the hook functions processed so far
- to be the first in the list of hooks has the disadvantage, that later hook functions have the opportunity to change the $result
- to be the last in the list of hooks has the disadvantage, that the processing of the hooks will simply not reach that point, hence less chance to have an impact on the $result
The final decision concerning the $title - $user - $action triple is the value can be found in $result, when the processing of the list of hooks is finished.
Risk of returning a string value
Limitations
Table of combinations
return true | return false | |
---|---|---|
$result = true | User should be allowed to proceed. Later functions can override. |
User should be allowed to proceed. Later functions not consulted. |
$result = false | User should not be allowed to proceed. Later functions can override. |
User should not be allowed to proceed. Later functions not consulted. |
$result untouched | Decision depends on the other hooks, or other internal decision. Later functions can override. |
Decision depends on the previous hooks, or other internal decision. Later functions not consulted. |
See also
- UserCanSendEmail
- TitleReadWhitelist - to allow user to read specific pages
- UserGetRights - for hooking into non-title-specific permission checks
- getUserPermissionsErrors - for a similar hook that can also return a message