Jump to content

Manual: $wgConditionalUserOptions

From mediawiki.org
This page is a translated version of the page Manual:$wgConditionalUserOptions and the translation is 33% complete.
User accounts, authentication: $wgConditionalUserOptions
Preferências do utilizador predefinidas.
Introduzido na versão:1.42.0 (Gerrit change 978537; git #6c8b6960)
Removido na versão:Ainda em utilização
Valores permitidos:Veja em baixo
Valor predefinido:[]

Conditional user options are a feature that makes it possible for default values of user preferences to be conditionally defined based on the considered user. For example, all users who registered after a certain date will have the preference enabled by default, while users who registered earlier have the feature disabled. This is useful when a given feature should be enabled for newly registered users only.

Formato do valor

$wgConditionalUserOptions is a map of user options to lists of conditional defaults descriptors. Each descriptor is an array of conditional cases taking the form of [ VALUE, CONDITION1, CONDITION2, ... ], where VALUE is the default value for users meeting the conditions and each condition is either:

  1. a CUDCOND_* constant (representing a condition that takes no arguments)
  2. an array taking the form of [ CUDCOND_*, arg1, arg2, ... ], where the first index defines the condition and the rest of the fields are the condition's arguments

Conditional cases are processed in the definition order; the first case with all of its conditions satisfied is used. When multiple conditions are specified, all of them must be met for the case to be used. When no case matches its conditions (or when none is defined), then $wgDefaultUserOptions is used instead.

A VALUE of null means no conditional default (i.e. the default option from $wgDefaultUserOptions should be used for users matching that set of conditions).

Exemplo de configuração
$wgConditionalUserOptions['user-option'] = [
    [
        'registered after 2024',
        [
            CUDCOND_AFTER, '20240101000000'
        ]
    ],
];


Condições disponíveis

  • CUDCOND_AFTER (1 string argument): user registered after the specified timestamp
  • CUDCOND_ANON (no argument): user not registered
  • CUDCOND_NAMED (no argument): normal non-temporary registered users
  • CUDCOND_USERGROUP: users with a specific user group

Consultar também