getAttributes($compiler, $args); unset($_attr['nocache']); $_paramsArray = $this->formatParamsArray($_attr); $_params = 'array(' . implode(',', $_paramsArray) . ')'; if ($functionHandler = $compiler->getSmarty()->getFunctionHandler($function)) { // not cacheable? $compiler->tag_nocache = $compiler->tag_nocache || !$functionHandler->isCacheable(); $output = "\$_smarty_tpl->getSmarty()->getFunctionHandler(" . var_export($function, true) . ")"; $output .= "->handle($_params, \$_smarty_tpl)"; } else { $compiler->trigger_template_error("unknown function '{$function}'", null, true); } if (!empty($parameter['modifierlist'])) { $output = $compiler->compileModifier($parameter['modifierlist'], $output); } return $output; } }