Hi, I can't find the solution of applying modifiers dynamicly in Smarty.
Template - I would like to work this way (example)
{$myVariable|$modifiers}
Php script
$smarty->assign('myVariable', "brumla brumla na drum drum drum");
$smarty->assign('modifiers', "truncate:30|trim");
Or I would like to apply modifiers in php - is there any method for parsing and applying modifiers in php?
Thanks for answers.