> > | %VAR{"NAME"}% is similar to %NAME% , but they differ if NAME is undefined, in which case %VAR{"NAME"}% is expanded to null (zero width string) while %NAME% remains as is (%NAME% ).
%VAR{"NAME"}% yields the same value as %IF{"defined NAME" then="$percntNAME$percnt"}% if NAME is a variable, but the latter is cubmersome.
- Syntax:
%VAR{"NAME" ...}%
- Supported parameters:
Parameter: | Description: | Default: | "Variable" | The name of the variable to be retrieved. If not specified, %VAR{...}% is expanded to null. | required | topic="Web.Topic" | Specifies the topic in which the specified preferences vaiable is fetched. | none | topic="Topic" | Same as above, but the web is specified specified explicitly with the web parameter or the current web is specified. | none | web="Web" | Specifies the web in which the specified preferences variable is fetched. | none | default="Value" | Specifies the value to be returned if the specified variable is undefined. | "" (null string) | ignorenull="on" | If specified, a null string ("") value is regarded as undefined. This affects whether or not the value specified by the default parameter is returned. | "off" |
- Example 1: To get the members of TWikiAdminGroup,
%VAR{"GROUP" topic="%USERSWEB%.TWikiAdminGroup"}% , which expands to Main.ChrisBrew, IanLoader, KevinDunford, WilliamPilcher .
- Example 2: To get
%WEBBGCOLOR% of the Main web write %VAR{"WEBBGCOLOR" web="Main"}% , which expands to #FFEFA6
- Example 3: Let's say you are writing the "foo" skin. And you want to have the users specify a string inserted in the head tag with FOOSKIN_HTML_HEAD_HOOK. That can be achived by the following:
%VARVAL{"FOOSKIN_HTML_HEAD_HOOK" default="<nop>" ignorenull="on"}%
- Category: DevelopmentVariables, SystemInformationVariables
- Related: ALLVARIABLES, WEBPREFSTOPIC
|