Manual:Hooks/AutopromoteCondition
Appearance
From mediawiki.org
Deprecated: This feature is deprecated and should no longer be used, however it is possibly still available for reasons of backwards compatibility . This feature was deprecated in version 1.46.0. See UserRequirementsCondition for an alternative way to use this feature.
| AutopromoteCondition | |
|---|---|
| Available from version 1.12.0 check autopromote condition for user. | |
| Define function: | public static function onAutopromoteCondition( $type, $args, $user, &$result ) { ... } |
| Attach hook: | In extension.json:
{ "Hooks":{ "AutopromoteCondition":"MediaWiki\\Extension\\MyExtension\\Hooks::onAutopromoteCondition" } } |
| Called from: | File(s): Autopromote.php |
| Interface: | AutopromoteConditionHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:AutopromoteCondition extensions.
Details
[edit ]This hook only runs if the condition type does not match any of those already defined as possible conditions.
If you are writing an extension that declares a constant for a new condition type, note that values 0 through 9 have already been taken by APCOND_EDITCOUNT, APCOND_AGE, etc.
- $type - condition type
- $args - arguments
- $user - user
- &$result - result of checking autopromote condition. Defaults to null; if left as null, will throw an exception ("unrecognized condition [$type] for autopromotion")