Difference between revisions of "Template:Switch"

From ScummVM :: Wiki
Jump to navigation Jump to search
Line 1: Line 1:
<includeonly>{{{ {{{switch|}}}|{{{default|{{{switch}}}}}}}}}</includeonly><noinclude>
<includeonly>{{{ {{{switch|}}}|{{{default|{{{switch}}}}}}}}}    {{{ {{{switch|}}}|{{{default}}} }}}</includeonly><noinclude>
This template allows you to conditionally show one of a predefined set of arguments, depending on another named argument.
This template allows you to conditionally show one of a predefined set of arguments, depending on another named argument.
=Usage=
=Usage=

Revision as of 16:47, 5 March 2009

This template allows you to conditionally show one of a predefined set of arguments, depending on another named argument.

Usage

Use the "switch" argument to select which argument to show:

  • {{Switch|yes=yay|no=nay|switch=yes}} shows "yay yay"
  • {{Switch|yes=yay|no=nay|switch=no}} shows "nay nay"

If the specified option is unknown, the "switch" value will be shown:

  • {{Switch|yes=yay|no=nay|switch=err}} shows "err {{{default}}} "

The "default" argument will be used when the "switch" value doesn't match any of the options or that's empty:

  • {{Switch|yes=yay|no=nay|default=maybe|switch=err}} shows "maybe maybe "