Manual:Hooks/AutopromoteCondition/pl
Appearance
AutopromoteCondition | |
---|---|
Dostępne od wersji version 1.12.0 check autopromote condition for user. | |
Zdefiniuj funkcję: | public static function onAutopromoteCondition( $type, $args, $user, &$result ) { ... }
|
Dołącz hak: | W extension.json:
{
"Hooks": {
"AutopromoteCondition": "MediaWiki\\Extension\\MyExtension\\Hooks::onAutopromoteCondition"
}
}
|
Called from: | Plik(i): Autopromote.php |
Interface: | AutopromoteConditionHook.php |
For more information about attaching hooks, see Podręcznik:Haki .
For examples of extensions using this hook, see Category:AutopromoteCondition extensions/pl.
Szczegóły
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")