Reputation: 973
How to assign a local template variable with a string concatenated just like below:
{$yes_src=const1.'yes'.const2}
to be used below in the code in the manner {$yes_src}
.
By the way I am looking for a job as PHP developer :)
Upvotes: 45
Views: 82445
Reputation: 206058
{ $yes_src = $variable|cat:"some string"|cat:$variable }
Upvotes: 15
Reputation: 50592
The way you are doing it is call the "short form" of assign
, you just need to use the correct quoting mechanism:
{$yes_src="`$const1`yes`$const2`"}
Use assign
:
{assign var="yes_src" val="`$const1`yes`$const2`"}
Use cat
:
{$const1|cat:"yes"}{$const2}
You can also simply put the variables next to one another without assigning it to a variable:
{$const1}yes{$const2}
... no variable needed.
A note If you find yourself using assign
more than rarely, you might have a misconception about the ideas of separating logic from presentation. Usually, concatenation and other variable work would be accomplished in PHP before the template is ever involved. The template's role is to just display the data, you should avoid creating or altering the data in the template.
Documentation
assign
- http://www.smarty.net/docs/en/language.function.assign.tplcat
- http://www.smarty.net/docsv2/en/language.modifier.catUpvotes: 98
Reputation: 3255
Try this:
{capture assign=yes_src}{$const1}.'yes'.{$const2}{/capture}
And then use the new variable:
{$yes_src}
Upvotes: 11