Manual:$wgAutopromoteOnce
アクセス: $wgAutopromoteOnce | |
---|---|
Conditions of automatic promotion of user to specific groups that are done only once. |
|
導入されたバージョン: | 1.18.0 (r90755) |
除去されたバージョン: | 使用中 |
許容される値: | (配列) |
既定値: | 下記参照 |
その他の設定: アルファベット順 | 機能順 |
詳細
Does not add the user to the group again if it has been removed. Also, does not remove the group if the user no longer meets the criteria.
The format is array( event => criteria, ... )
where event is 'onEdit' (when user edits) or 'onView' (when user views the wiki) and criteria has the same format as $wgAutopromote
.
既定値
MediaWiki バージョン: | ≧ 1.25 |
[
'onEdit' => [],
]
MediaWiki バージョン: | 1.18 – 1.24 |
array(
'onEdit' => array(),
'onView' => array()
)