We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
{assign} is used for assigning template variables during the execution of a template.
{assign var="name" value="Bob"} {* or *} {assign "name" "Bob"} The value of name is {$name}. {assign "foo" "foo is [{'bar'|upper}]"} {$foo}
Output:
The value of name is Bob. foo is [BAR]