imported>Oetterer K (Schützte „Vorlage:Yesno“: Automatic protection of selected project pages ([Bearbeiten=Nur Administratoren erlauben] (unbeschränkt) [Verschieben=Nur Administratoren erlauben] (unbeschränkt))) |
|||
(Eine dazwischenliegende Version von einem anderen Benutzer wird nicht angezeigt) |
Aktuelle Version vom 7. Oktober 2022, 16:56 Uhr
This template normalises an input to be a yes/no output.
Usage[Quelltext bearbeiten]
The template distinguishes five different types of input, supplied on the first unnamed parameter:
- Yes: Case-insensitive forms of "Ja", "Wahr", "j", "Yes", "true", "y" and "1"; e.g. {{Yesno|yEs}}
- No: Case-insensitive forms of "Nein", "Falsch", "No", "False", "n" and "0"; e.g. {{Yesno|nO}}
- Nothing: When the input is defined but either contains no value or consists of whitespace character only; i.e. {{Yesno|}} or {{Yesno| }}
- Negation: When the input is either "¬" or entirely missing; i.e. {{Yesno|¬}} or {{Yesno}}
- Anything else: e.g. {{Yesno|Purple monkey dish washer}}
By default, the template returns "yes" in the first and last case but returns blank in the other cases.
Customizing the output[Quelltext bearbeiten]
Template's default output can be customized with five named parameters, respectively: |yes=
, |no=
, |blank=
, |¬=
and |def=
. If these parameters are specified, the template response is as follows:
- Yes: Template returns the contents of
|yes=
, otherwise returns "yes". For example: - No: Template returns the contents of
|no=
, otherwise returns blank. For example: - Nothing: Template returns the contents of
|blank=
or|no=
in absence of the former; otherwise, returns blank. - Negation: Template returns the contents of
|¬=
, otherwise returns blank. For example:{{yesno|¬|¬=sausage}}
results in "sausage"
- Anything else: Template returns the contents of
|def=
or|yes=
in absence of the former; otherwise, returns "yes".
For the named parameters, use of a blank value is not the same as omitting the parameter. Blank named parameters tells the template that the customized return value is blank. For example:
{{yesno|purple monkey dish washer}}
results in "yes"{{yesno|purple monkey dish washer|def=}}
results in ""
Logical distinctions[Quelltext bearbeiten]
Overview of {{yesno}} logical values and their associated texts
| ||||||
---|---|---|---|---|---|---|
Input parameter 1 ( sample text )
|
In code | Logical return value | Default return text |
Return text when set:sample text sample text sample text sample text sample text
|
Note | |
yes, y, 1* | sample text
|
sample text
|
"yes" | "Pos" | * Case-insensitive (Y=y) | |
Some Text | sample text
|
sample text
|
"yes" | "Def" | "Pos" when sample text
| |
no, n, 0* | sample text
|
sample text
|
"" | "Neg" | * Case-insensitive (N=n) | |
<blank> | sample text
|
sample text
|
"" | "Blank" | "Neg" when sample text
| |
1=<blank> | sample text
|
sample text
|
"" | "Blank" | "Neg" when sample text
| |
¬ | sample text
|
sample text
|
"" | "Undefined" | ||
<omitted> | sample text
|
sample text
|
"" | "Undefined" |
Full parameter list[Quelltext bearbeiten]
Unnamed parameter 1= the input value to be evaluated. The other parameters (all named, all optional), are the return values for their respective logical outcome. When set, each one overrules their default return value.
{{yesno | | yes = | no = | blank= | ¬ = | def = }}