31 $_function =
"smarty_template_function_{$_name}_nocache";
33 $_function =
"smarty_template_function_{$_hash}_{$_name}";
35 if (!is_callable($_function)) {
36 $_code =
"function {$_function}(\$_smarty_tpl,\$params) {
37 \$saved_tpl_vars = \$_smarty_tpl->tpl_vars;
38 foreach (\$_smarty_tpl->smarty->template_functions['{$_name}']['parameter'] as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);};
39 foreach (\$params as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);}?>";
41 $_code .= preg_replace(array(
"!<\?php echo \\'/\*%%SmartyNocache:{$_template->smarty->template_functions[$_name]['nocache_hash']}%%\*/|/\*/%%SmartyNocache:{$_template->smarty->template_functions[$_name]['nocache_hash']}%%\*/\\';\?>!",
42 "!\\\'!"), array(
'',
"'"), $_template->smarty->template_functions[$_name][
'compiled']);
43 $_template->smarty->template_functions[$_name][
'called_nocache'] =
true;
45 $_code .= preg_replace(
"/{$_template->smarty->template_functions[$_name]['nocache_hash']}/", $_template->properties[
'nocache_hash'], $_template->smarty->template_functions[$_name][
'compiled']);
47 $_code .=
"<?php \$_smarty_tpl->tpl_vars = \$saved_tpl_vars;}";
50 $_function($_template, $_params);
static call($_name, Smarty_Internal_Template $_template, $_params, $_hash, $_nocache)
This function handles calls to template functions defined by {function} It does create a PHP function...