function smarty_compiler_defun_close($tag_args, &$compiler) { list($name, $attrs, $open_tag_args, $func_key) = array_pop($compiler->_tag_stack); if ($name != 'defun') { $compiler->_syntax_error("unexpected {/defun}"); } return " \$this->_tpl_vars = \$_fun_tpl_vars; }} " . $func_key . smarty_compiler_fun($open_tag_args, $compiler); }
function smarty_compiler_defun_close($tag_args, &$compiler) { $tag_attrs = $compiler->_parse_attrs($tag_args); list($name, $attrs, $open_tag_args, $func_key) = array_pop($compiler->_tag_stack); if ($name != 'defun') { $compiler->_syntax_error("unexpected {/defun}"); } $result = " \$this->_tpl_vars = \$_fun_tpl_vars; }} " . $func_key; if (!isset($tag_attrs['fun']) || '0' !== $compiler->_dequote($tag_attrs['fun'])) { $result .= smarty_compiler_fun($open_tag_args, $compiler); } return $result; }