08/08/2012, 16:15:46
regarde de ce côté : http://www.smarty.net/docs/en/resources.string.tpl
Dans ton UDT "toto":
Dans ton gabarit
Dans ton UDT "toto":
Code :
$smarty->assign('foo','value');
$template_string = 'display {$foo} here';
$smarty->display('string:'.$template_string); // compiles for later reuse
$smarty->display('eval:'.$template_string); // compiles every time
Dans ton gabarit
Code :
{toto}{include file="string:$template_string"} {* compiles for later reuse *}
{toto}{include file="eval:$template_string"} {* compiles every time *}