Smarty_Compiler.class.php
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:89k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Project:     Smarty: the PHP compiling template engine
  4.  * File:        Smarty_Compiler.class.php
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  * @link http://smarty.php.net/
  21.  * @author Monte Ohrt <monte@ispi.net>
  22.  * @author Andrei Zmievski <andrei@php.net>
  23.  * @version 2.6.6
  24.  * @copyright 2001-2004 ispi of Lincoln, Inc.
  25.  * @package Smarty
  26.  */
  27. /* $Id: Smarty_Compiler.class.php,v 1.1 2004/10/27 10:57:55 gabest Exp $ */
  28. /**
  29.  * Template compiling class
  30.  * @package Smarty
  31.  */
  32. class Smarty_Compiler extends Smarty {
  33.     // internal vars
  34.     /**#@+
  35.      * @access private
  36.      */
  37.     var $_folded_blocks         =   array();    // keeps folded template blocks
  38.     var $_current_file          =   null;       // the current template being compiled
  39.     var $_current_line_no       =   1;          // line number for error messages
  40.     var $_capture_stack         =   array();    // keeps track of nested capture buffers
  41.     var $_plugin_info           =   array();    // keeps track of plugins to load
  42.     var $_init_smarty_vars      =   false;
  43.     var $_permitted_tokens      =   array('true','false','yes','no','on','off','null');
  44.     var $_db_qstr_regexp        =   null;        // regexps are setup in the constructor
  45.     var $_si_qstr_regexp        =   null;
  46.     var $_qstr_regexp           =   null;
  47.     var $_func_regexp           =   null;
  48.     var $_reg_obj_regexp        =   null;
  49.     var $_var_bracket_regexp    =   null;
  50.     var $_num_const_regexp      =   null;
  51.     var $_dvar_guts_regexp      =   null;
  52.     var $_dvar_regexp           =   null;
  53.     var $_cvar_regexp           =   null;
  54.     var $_svar_regexp           =   null;
  55.     var $_avar_regexp           =   null;
  56.     var $_mod_regexp            =   null;
  57.     var $_var_regexp            =   null;
  58.     var $_parenth_param_regexp  =   null;
  59.     var $_func_call_regexp      =   null;
  60.     var $_obj_ext_regexp        =   null;
  61.     var $_obj_start_regexp      =   null;
  62.     var $_obj_params_regexp     =   null;
  63.     var $_obj_call_regexp       =   null;
  64.     var $_cacheable_state       =   0;
  65.     var $_cache_attrs_count     =   0;
  66.     var $_nocache_count         =   0;
  67.     var $_cache_serial          =   null;
  68.     var $_cache_include         =   null;
  69.     var $_strip_depth           =   0;
  70.     var $_additional_newline    =   "n";
  71.     /**#@-*/
  72.     /**
  73.      * The class constructor.
  74.      */
  75.     function Smarty_Compiler()
  76.     {
  77.         // matches double quoted strings:
  78.         // "foobar"
  79.         // "foo"bar"
  80.         $this->_db_qstr_regexp = '"[^"\\]*(?:\\.[^"\\]*)*"';
  81.         // matches single quoted strings:
  82.         // 'foobar'
  83.         // 'foo'bar'
  84.         $this->_si_qstr_regexp = ''[^'\\]*(?:\\.[^'\\]*)*'';
  85.         // matches single or double quoted strings
  86.         $this->_qstr_regexp = '(?:' . $this->_db_qstr_regexp . '|' . $this->_si_qstr_regexp . ')';
  87.         // matches bracket portion of vars
  88.         // [0]
  89.         // [foo]
  90.         // [$bar]
  91.         $this->_var_bracket_regexp = '[$?[w.]+]';
  92.         // matches numerical constants
  93.         // 30
  94.         // -12
  95.         // 13.22
  96.         $this->_num_const_regexp = '(?:-?d+(?:.d+)?)';
  97.         // matches $ vars (not objects):
  98.         // $foo
  99.         // $foo.bar
  100.         // $foo.bar.foobar
  101.         // $foo[0]
  102.         // $foo[$bar]
  103.         // $foo[5][blah]
  104.         // $foo[5].bar[$foobar][4]
  105.         $this->_dvar_math_regexp = '(?:[+*/%]|(?:-(?!>)))';
  106.         $this->_dvar_math_var_regexp = '[$w.+-*/%d>[]]';
  107.         $this->_dvar_guts_regexp = 'w+(?:' . $this->_var_bracket_regexp
  108.                 . ')*(?:.$?w+(?:' . $this->_var_bracket_regexp . ')*)*(?:' . $this->_dvar_math_regexp . '(?:' . $this->_num_const_regexp . '|' . $this->_dvar_math_var_regexp . ')*)?';
  109.         $this->_dvar_regexp = '$' . $this->_dvar_guts_regexp;
  110.         // matches config vars:
  111.         // #foo#
  112.         // #foobar123_foo#
  113.         $this->_cvar_regexp = '#w+#';
  114.         // matches section vars:
  115.         // %foo.bar%
  116.         $this->_svar_regexp = '%w+.w+%';
  117.         // matches all valid variables (no quotes, no modifiers)
  118.         $this->_avar_regexp = '(?:' . $this->_dvar_regexp . '|'
  119.            . $this->_cvar_regexp . '|' . $this->_svar_regexp . ')';
  120.         // matches valid variable syntax:
  121.         // $foo
  122.         // $foo
  123.         // #foo#
  124.         // #foo#
  125.         // "text"
  126.         // "text"
  127.         $this->_var_regexp = '(?:' . $this->_avar_regexp . '|' . $this->_qstr_regexp . ')';
  128.         // matches valid object call (one level of object nesting allowed in parameters):
  129.         // $foo->bar
  130.         // $foo->bar()
  131.         // $foo->bar("text")
  132.         // $foo->bar($foo, $bar, "text")
  133.         // $foo->bar($foo, "foo")
  134.         // $foo->bar->foo()
  135.         // $foo->bar->foo->bar()
  136.         // $foo->bar($foo->bar)
  137.         // $foo->bar($foo->bar())
  138.         // $foo->bar($foo->bar($blah,$foo,44,"foo",$foo[0].bar))
  139.         $this->_obj_ext_regexp = '->(?:$?' . $this->_dvar_guts_regexp . ')';
  140.         $this->_obj_restricted_param_regexp = '(?:'
  141.                 . '(?:' . $this->_var_regexp . '|' . $this->_num_const_regexp . ')(?:' . $this->_obj_ext_regexp . '(?:((?:(?:' . $this->_var_regexp . '|' . $this->_num_const_regexp . ')'
  142.                 . '(?:s*,s*(?:' . $this->_var_regexp . '|' . $this->_num_const_regexp . '))*)?))?)*)';
  143.         $this->_obj_single_param_regexp = '(?:w+|' . $this->_obj_restricted_param_regexp . '(?:s*,s*(?:(?:w+|'
  144.                 . $this->_var_regexp . $this->_obj_restricted_param_regexp . ')))*)';
  145.         $this->_obj_params_regexp = '((?:' . $this->_obj_single_param_regexp
  146.                 . '(?:s*,s*' . $this->_obj_single_param_regexp . ')*)?)';
  147.         $this->_obj_start_regexp = '(?:' . $this->_dvar_regexp . '(?:' . $this->_obj_ext_regexp . ')+)';
  148.         $this->_obj_call_regexp = '(?:' . $this->_obj_start_regexp . '(?:' . $this->_obj_params_regexp . ')?(?:' . $this->_dvar_math_regexp . '(?:' . $this->_num_const_regexp . '|' . $this->_dvar_math_var_regexp . ')*)?)';
  149.         
  150.         // matches valid modifier syntax:
  151.         // |foo
  152.         // |@foo
  153.         // |foo:"bar"
  154.         // |foo:$bar
  155.         // |foo:"bar":$foobar
  156.         // |foo|bar
  157.         // |foo:$foo->bar
  158.         $this->_mod_regexp = '(?:|@?w+(?::(?:w+|' . $this->_num_const_regexp . '|'
  159.            . $this->_obj_call_regexp . '|' . $this->_avar_regexp . '|' . $this->_qstr_regexp .'))*)';
  160.         // matches valid function name:
  161.         // foo123
  162.         // _foo_bar
  163.         $this->_func_regexp = '[a-zA-Z_]w*';
  164.         // matches valid registered object:
  165.         // foo->bar
  166.         $this->_reg_obj_regexp = '[a-zA-Z_]w*->[a-zA-Z_]w*';
  167.         // matches valid parameter values:
  168.         // true
  169.         // $foo
  170.         // $foo|bar
  171.         // #foo#
  172.         // #foo#|bar
  173.         // "text"
  174.         // "text"|bar
  175.         // $foo->bar
  176.         $this->_param_regexp = '(?:s*(?:' . $this->_obj_call_regexp . '|'
  177.            . $this->_var_regexp . '|' . $this->_num_const_regexp  . '|w+)(?>' . $this->_mod_regexp . '*)s*)';
  178.         // matches valid parenthesised function parameters:
  179.         //
  180.         // "text"
  181.         //    $foo, $bar, "text"
  182.         // $foo|bar, "foo"|bar, $foo->bar($foo)|bar
  183.         $this->_parenth_param_regexp = '(?:((?:w+|'
  184.                 . $this->_param_regexp . '(?:s*,s*(?:(?:w+|'
  185.                 . $this->_param_regexp . ')))*)?))';
  186.         // matches valid function call:
  187.         // foo()
  188.         // foo_bar($foo)
  189.         // _foo_bar($foo,"bar")
  190.         // foo123($foo,$foo->bar(),"foo")
  191.         $this->_func_call_regexp = '(?:' . $this->_func_regexp . 's*(?:'
  192.            . $this->_parenth_param_regexp . '))';
  193.     }
  194.     /**
  195.      * compile a resource
  196.      *
  197.      * sets $compiled_content to the compiled source
  198.      * @param string $resource_name
  199.      * @param string $source_content
  200.      * @param string $compiled_content
  201.      * @return true
  202.      */
  203.     function _compile_file($resource_name, $source_content, &$compiled_content)
  204.     {
  205.         if ($this->security) {
  206.             // do not allow php syntax to be executed unless specified
  207.             if ($this->php_handling == SMARTY_PHP_ALLOW &&
  208.                 !$this->security_settings['PHP_HANDLING']) {
  209.                 $this->php_handling = SMARTY_PHP_PASSTHRU;
  210.             }
  211.         }
  212.         $this->_load_filters();
  213.         $this->_current_file = $resource_name;
  214.         $this->_current_line_no = 1;
  215.         $ldq = preg_quote($this->left_delimiter, '~');
  216.         $rdq = preg_quote($this->right_delimiter, '~');
  217.         // run template source through prefilter functions
  218.         if (count($this->_plugins['prefilter']) > 0) {
  219.             foreach ($this->_plugins['prefilter'] as $filter_name => $prefilter) {
  220.                 if ($prefilter === false) continue;
  221.                 if ($prefilter[3] || is_callable($prefilter[0])) {
  222.                     $source_content = call_user_func_array($prefilter[0],
  223.                                                             array($source_content, &$this));
  224.                     $this->_plugins['prefilter'][$filter_name][3] = true;
  225.                 } else {
  226.                     $this->_trigger_fatal_error("[plugin] prefilter '$filter_name' is not implemented");
  227.                 }
  228.             }
  229.         }
  230.         /* fetch all special blocks */
  231.         $search = "~{$ldq}*(.*?)*{$rdq}|{$ldq}s*literals*{$rdq}(.*?){$ldq}s*/literals*{$rdq}|{$ldq}s*phps*{$rdq}(.*?){$ldq}s*/phps*{$rdq}~s";
  232.         preg_match_all($search, $source_content, $match,  PREG_SET_ORDER);
  233.         $this->_folded_blocks = $match;
  234.         reset($this->_folded_blocks);
  235.         /* replace special blocks by "{php}" */
  236.         $source_content = preg_replace($search.'e', "'"
  237.                                        . $this->_quote_replace($this->left_delimiter) . 'php'
  238.                                        . "' . str_repeat("n", substr_count('\0', "n")) .'"
  239.                                        . $this->_quote_replace($this->right_delimiter)
  240.                                        . "'"
  241.                                        , $source_content);
  242.         /* Gather all template tags. */
  243.         preg_match_all("~{$ldq}s*(.*?)s*{$rdq}~s", $source_content, $_match);
  244.         $template_tags = $_match[1];
  245.         /* Split content by template tags to obtain non-template content. */
  246.         $text_blocks = preg_split("~{$ldq}.*?{$rdq}~s", $source_content);
  247.         /* loop through text blocks */
  248.         for ($curr_tb = 0, $for_max = count($text_blocks); $curr_tb < $for_max; $curr_tb++) {
  249.             /* match anything resembling php tags */
  250.             if (preg_match_all('~(<?(?:w+|=)?|?>|languages*=s*["']?php["']?)~is', $text_blocks[$curr_tb], $sp_match)) {
  251.                 /* replace tags with placeholders to prevent recursive replacements */
  252.                 $sp_match[1] = array_unique($sp_match[1]);
  253.                 usort($sp_match[1], '_smarty_sort_length');
  254.                 for ($curr_sp = 0, $for_max2 = count($sp_match[1]); $curr_sp < $for_max2; $curr_sp++) {
  255.                     $text_blocks[$curr_tb] = str_replace($sp_match[1][$curr_sp],'%%%SMARTYSP'.$curr_sp.'%%%',$text_blocks[$curr_tb]);
  256.                 }
  257.                 /* process each one */
  258.                 for ($curr_sp = 0, $for_max2 = count($sp_match[1]); $curr_sp < $for_max2; $curr_sp++) {
  259.                     if ($this->php_handling == SMARTY_PHP_PASSTHRU) {
  260.                         /* echo php contents */
  261.                         $text_blocks[$curr_tb] = str_replace('%%%SMARTYSP'.$curr_sp.'%%%', '<?php echo ''.str_replace("'", "'", $sp_match[1][$curr_sp]).''; ?>'."n", $text_blocks[$curr_tb]);
  262.                     } else if ($this->php_handling == SMARTY_PHP_QUOTE) {
  263.                         /* quote php tags */
  264.                         $text_blocks[$curr_tb] = str_replace('%%%SMARTYSP'.$curr_sp.'%%%', htmlspecialchars($sp_match[1][$curr_sp]), $text_blocks[$curr_tb]);
  265.                     } else if ($this->php_handling == SMARTY_PHP_REMOVE) {
  266.                         /* remove php tags */
  267.                         $text_blocks[$curr_tb] = str_replace('%%%SMARTYSP'.$curr_sp.'%%%', '', $text_blocks[$curr_tb]);
  268.                     } else {
  269.                         /* SMARTY_PHP_ALLOW, but echo non php starting tags */
  270.                         $sp_match[1][$curr_sp] = preg_replace('~(<?(?!php|=|$))~i', '<?php echo '\1'?>'."n", $sp_match[1][$curr_sp]);
  271.                         $text_blocks[$curr_tb] = str_replace('%%%SMARTYSP'.$curr_sp.'%%%', $sp_match[1][$curr_sp], $text_blocks[$curr_tb]);
  272.                     }
  273.                 }
  274.             }
  275.         }
  276.         /* Compile the template tags into PHP code. */
  277.         $compiled_tags = array();
  278.         for ($i = 0, $for_max = count($template_tags); $i < $for_max; $i++) {
  279.             $this->_current_line_no += substr_count($text_blocks[$i], "n");
  280.             $compiled_tags[] = $this->_compile_tag($template_tags[$i]);
  281.             $this->_current_line_no += substr_count($template_tags[$i], "n");
  282.         }
  283.         if (count($this->_tag_stack)>0) {
  284.             list($_open_tag, $_line_no) = end($this->_tag_stack);
  285.             $this->_syntax_error("unclosed tag {$_open_tag} (opened line $_line_no).", E_USER_ERROR, __FILE__, __LINE__);
  286.             return;
  287.         }
  288.         $compiled_content = '';
  289.         /* Interleave the compiled contents and text blocks to get the final result. */
  290.         for ($i = 0, $for_max = count($compiled_tags); $i < $for_max; $i++) {
  291.             if ($compiled_tags[$i] == '') {
  292.                 // tag result empty, remove first newline from following text block
  293.                 $text_blocks[$i+1] = preg_replace('~^(rn|r|n)~', '', $text_blocks[$i+1]);
  294.             }
  295.             $compiled_content .= $text_blocks[$i].$compiled_tags[$i];
  296.         }
  297.         $compiled_content .= $text_blocks[$i];
  298.         /* Reformat data between 'strip' and '/strip' tags, removing spaces, tabs and newlines. */
  299.         if (preg_match_all("~{$ldq}strip{$rdq}.*?{$ldq}/strip{$rdq}~s", $compiled_content, $_match)) {
  300.             $strip_tags = $_match[0];
  301.             $strip_tags_modified = preg_replace("~{$ldq}/?strip{$rdq}|[t ]+$|^[t ]+~m", '', $strip_tags);
  302.             $strip_tags_modified = preg_replace('~[rn]+~m', '', $strip_tags_modified);
  303.             for ($i = 0, $for_max = count($strip_tags); $i < $for_max; $i++)
  304.                 $compiled_content = preg_replace("~{$ldq}strip{$rdq}.*?{$ldq}/strip{$rdq}~s",
  305.                                                   $this->_quote_replace($strip_tags_modified[$i]),
  306.                                                   $compiled_content, 1);
  307.         }
  308.         // remove n from the end of the file, if any
  309.         if (($_len=strlen($compiled_content)) && ($compiled_content{$_len - 1} == "n" )) {
  310.             $compiled_content = substr($compiled_content, 0, -1);
  311.         }
  312.         if (!empty($this->_cache_serial)) {
  313.             $compiled_content = "<?php $this->_cache_serials['".$this->_cache_include."'] = '".$this->_cache_serial."'; ?>" . $compiled_content;
  314.         }
  315.         // remove unnecessary close/open tags
  316.         $compiled_content = preg_replace('~?>n?<?php~', '', $compiled_content);
  317.         // run compiled template through postfilter functions
  318.         if (count($this->_plugins['postfilter']) > 0) {
  319.             foreach ($this->_plugins['postfilter'] as $filter_name => $postfilter) {
  320.                 if ($postfilter === false) continue;
  321.                 if ($postfilter[3] || is_callable($postfilter[0])) {
  322.                     $compiled_content = call_user_func_array($postfilter[0],
  323.                                                               array($compiled_content, &$this));
  324.                     $this->_plugins['postfilter'][$filter_name][3] = true;
  325.                 } else {
  326.                     $this->_trigger_fatal_error("Smarty plugin error: postfilter '$filter_name' is not implemented");
  327.                 }
  328.             }
  329.         }
  330.         // put header at the top of the compiled template
  331.         $template_header = "<?php /* Smarty version ".$this->_version.", created on ".strftime("%Y-%m-%d %H:%M:%S")."n";
  332.         $template_header .= "         compiled from ".strtr(urlencode($resource_name), array('%2F'=>'/', '%3A'=>':'))." */ ?>n";
  333.         /* Emit code to load needed plugins. */
  334.         $this->_plugins_code = '';
  335.         if (count($this->_plugin_info)) {
  336.             $_plugins_params = "array('plugins' => array(";
  337.             foreach ($this->_plugin_info as $plugin_type => $plugins) {
  338.                 foreach ($plugins as $plugin_name => $plugin_info) {
  339.                     $_plugins_params .= "array('$plugin_type', '$plugin_name', '$plugin_info[0]', $plugin_info[1], ";
  340.                     $_plugins_params .= $plugin_info[2] ? 'true),' : 'false),';
  341.                 }
  342.             }
  343.             $_plugins_params .= '))';
  344.             $plugins_code = "<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');nsmarty_core_load_plugins($_plugins_params, $this); ?>n";
  345.             $template_header .= $plugins_code;
  346.             $this->_plugin_info = array();
  347.             $this->_plugins_code = $plugins_code;
  348.         }
  349.         if ($this->_init_smarty_vars) {
  350.             $template_header .= "<?php require_once(SMARTY_CORE_DIR . 'core.assign_smarty_interface.php');nsmarty_core_assign_smarty_interface(null, $this); ?>n";
  351.             $this->_init_smarty_vars = false;
  352.         }
  353.         $compiled_content = $template_header . $compiled_content;
  354.         return true;
  355.     }
  356.     /**
  357.      * Compile a template tag
  358.      *
  359.      * @param string $template_tag
  360.      * @return string
  361.      */
  362.     function _compile_tag($template_tag)
  363.     {
  364.         /* Matched comment. */
  365.         if ($template_tag{0} == '*' && $template_tag{strlen($template_tag) - 1} == '*')
  366.             return '';
  367.         
  368.         /* Split tag into two three parts: command, command modifiers and the arguments. */
  369.         if(! preg_match('~^(?:(' . $this->_num_const_regexp . '|' . $this->_obj_call_regexp . '|' . $this->_var_regexp
  370.                 . '|/?' . $this->_reg_obj_regexp . '|/?' . $this->_func_regexp . ')(' . $this->_mod_regexp . '*))
  371.                       (?:s+(.*))?$
  372.                     ~xs', $template_tag, $match)) {
  373.             $this->_syntax_error("unrecognized tag: $template_tag", E_USER_ERROR, __FILE__, __LINE__);
  374.         }
  375.         
  376.         $tag_command = $match[1];
  377.         $tag_modifier = isset($match[2]) ? $match[2] : null;
  378.         $tag_args = isset($match[3]) ? $match[3] : null;
  379.         if (preg_match('~^' . $this->_num_const_regexp . '|' . $this->_obj_call_regexp . '|' . $this->_var_regexp . '$~', $tag_command)) {
  380.             /* tag name is a variable or object */
  381.             $_return = $this->_parse_var_props($tag_command . $tag_modifier, $this->_parse_attrs($tag_args));
  382.             if(isset($_tag_attrs['assign'])) {
  383.                 return "<?php $this->assign('" . $this->_dequote($_tag_attrs['assign']) . "', $_return ); ?>n";
  384.             } else {
  385.                 return "<?php echo $_return; ?>" . $this->_additional_newline;
  386.             }
  387.         }
  388.         /* If the tag name is a registered object, we process it. */
  389.         if (preg_match('~^/?' . $this->_reg_obj_regexp . '$~', $tag_command)) {
  390.             return $this->_compile_registered_object_tag($tag_command, $this->_parse_attrs($tag_args), $tag_modifier);
  391.         }
  392.         switch ($tag_command) {
  393.             case 'include':
  394.                 return $this->_compile_include_tag($tag_args);
  395.             case 'include_php':
  396.                 return $this->_compile_include_php_tag($tag_args);
  397.             case 'if':
  398.                 $this->_push_tag('if');
  399.                 return $this->_compile_if_tag($tag_args);
  400.             case 'else':
  401.                 list($_open_tag) = end($this->_tag_stack);
  402.                 if ($_open_tag != 'if' && $_open_tag != 'elseif')
  403.                     $this->_syntax_error('unexpected {else}', E_USER_ERROR, __FILE__, __LINE__);
  404.                 else
  405.                     $this->_push_tag('else');
  406.                 return '<?php else: ?>';
  407.             case 'elseif':
  408.                 list($_open_tag) = end($this->_tag_stack);
  409.                 if ($_open_tag != 'if' && $_open_tag != 'elseif')
  410.                     $this->_syntax_error('unexpected {elseif}', E_USER_ERROR, __FILE__, __LINE__);
  411.                 if ($_open_tag == 'if')
  412.                     $this->_push_tag('elseif');
  413.                 return $this->_compile_if_tag($tag_args, true);
  414.             case '/if':
  415.                 $this->_pop_tag('if');
  416.                 return '<?php endif; ?>';
  417.             case 'capture':
  418.                 return $this->_compile_capture_tag(true, $tag_args);
  419.             case '/capture':
  420.                 return $this->_compile_capture_tag(false);
  421.             case 'ldelim':
  422.                 return $this->left_delimiter;
  423.             case 'rdelim':
  424.                 return $this->right_delimiter;
  425.             case 'section':
  426.                 $this->_push_tag('section');
  427.                 return $this->_compile_section_start($tag_args);
  428.             case 'sectionelse':
  429.                 $this->_push_tag('sectionelse');
  430.                 return "<?php endfor; else: ?>";
  431.                 break;
  432.             case '/section':
  433.                 $_open_tag = $this->_pop_tag('section');
  434.                 if ($_open_tag == 'sectionelse')
  435.                     return "<?php endif; ?>";
  436.                 else
  437.                     return "<?php endfor; endif; ?>";
  438.             case 'foreach':
  439.                 $this->_push_tag('foreach');
  440.                 return $this->_compile_foreach_start($tag_args);
  441.                 break;
  442.             case 'foreachelse':
  443.                 $this->_push_tag('foreachelse');
  444.                 return "<?php endforeach; unset($_from); else: ?>";
  445.             case '/foreach':
  446.                 $_open_tag = $this->_pop_tag('foreach');
  447.                 if ($_open_tag == 'foreachelse')
  448.                     return "<?php endif; ?>";
  449.                 else
  450.                     return "<?php endforeach; unset($_from); endif; ?>";
  451.                 break;
  452.             case 'strip':
  453.             case '/strip':
  454.                 if ($tag_command{0}=='/') {
  455.                     $this->_pop_tag('strip');
  456.                     if (--$this->_strip_depth==0) { /* outermost closing {/strip} */
  457.                         $this->_additional_newline = "n";
  458.                         return $this->left_delimiter.$tag_command.$this->right_delimiter;
  459.                     }
  460.                 } else {
  461.                     $this->_push_tag('strip');
  462.                     if ($this->_strip_depth++==0) { /* outermost opening {strip} */
  463.                         $this->_additional_newline = "";
  464.                         return $this->left_delimiter.$tag_command.$this->right_delimiter;
  465.                     }
  466.                 }
  467.                 return '';
  468.             case 'php':
  469.                 /* handle folded tags replaced by {php} */
  470.                 list(, $block) = each($this->_folded_blocks);
  471.                 $this->_current_line_no += substr_count($block[0], "n");
  472.                 /* the number of matched elements in the regexp in _compile_file()
  473.                    determins the type of folded tag that was found */
  474.                 switch (count($block)) {
  475.                     case 2: /* comment */
  476.                         return '';
  477.                     case 3: /* literal */
  478.                         return "<?php echo '" . strtr($block[2], array("'"=>"'", "\"=>"\\")) . "'; ?>" . $this->_additional_newline;
  479.                     case 4: /* php */
  480.                         if ($this->security && !$this->security_settings['PHP_TAGS']) {
  481.                             $this->_syntax_error("(secure mode) php tags not permitted", E_USER_WARNING, __FILE__, __LINE__);
  482.                             return;
  483.                         }
  484.                         return '<?php ' . $block[3] .' ?>';
  485.                 }
  486.                 break;
  487.             case 'insert':
  488.                 return $this->_compile_insert_tag($tag_args);
  489.             default:
  490.                 if ($this->_compile_compiler_tag($tag_command, $tag_args, $output)) {
  491.                     return $output;
  492.                 } else if ($this->_compile_block_tag($tag_command, $tag_args, $tag_modifier, $output)) {
  493.                     return $output;
  494.                 } else if ($this->_compile_custom_tag($tag_command, $tag_args, $tag_modifier, $output)) {
  495.                     return $output;                    
  496.                 } else {
  497.                     $this->_syntax_error("unrecognized tag '$tag_command'", E_USER_ERROR, __FILE__, __LINE__);
  498.                 }
  499.         }
  500.     }
  501.     /**
  502.      * compile the custom compiler tag
  503.      *
  504.      * sets $output to the compiled custom compiler tag
  505.      * @param string $tag_command
  506.      * @param string $tag_args
  507.      * @param string $output
  508.      * @return boolean
  509.      */
  510.     function _compile_compiler_tag($tag_command, $tag_args, &$output)
  511.     {
  512.         $found = false;
  513.         $have_function = true;
  514.         /*
  515.          * First we check if the compiler function has already been registered
  516.          * or loaded from a plugin file.
  517.          */
  518.         if (isset($this->_plugins['compiler'][$tag_command])) {
  519.             $found = true;
  520.             $plugin_func = $this->_plugins['compiler'][$tag_command][0];
  521.             if (!is_callable($plugin_func)) {
  522.                 $message = "compiler function '$tag_command' is not implemented";
  523.                 $have_function = false;
  524.             }
  525.         }
  526.         /*
  527.          * Otherwise we need to load plugin file and look for the function
  528.          * inside it.
  529.          */
  530.         else if ($plugin_file = $this->_get_plugin_filepath('compiler', $tag_command)) {
  531.             $found = true;
  532.             include_once $plugin_file;
  533.             $plugin_func = 'smarty_compiler_' . $tag_command;
  534.             if (!is_callable($plugin_func)) {
  535.                 $message = "plugin function $plugin_func() not found in $plugin_filen";
  536.                 $have_function = false;
  537.             } else {
  538.                 $this->_plugins['compiler'][$tag_command] = array($plugin_func, null, null, null, true);
  539.             }
  540.         }
  541.         /*
  542.          * True return value means that we either found a plugin or a
  543.          * dynamically registered function. False means that we didn't and the
  544.          * compiler should now emit code to load custom function plugin for this
  545.          * tag.
  546.          */
  547.         if ($found) {
  548.             if ($have_function) {
  549.                 $output = call_user_func_array($plugin_func, array($tag_args, &$this));
  550.                 if($output != '') {
  551.                 $output = '<?php ' . $this->_push_cacheable_state('compiler', $tag_command)
  552.                                    . $output
  553.                                    . $this->_pop_cacheable_state('compiler', $tag_command) . ' ?>';
  554.                 }
  555.             } else {
  556.                 $this->_syntax_error($message, E_USER_WARNING, __FILE__, __LINE__);
  557.             }
  558.             return true;
  559.         } else {
  560.             return false;
  561.         }
  562.     }
  563.     /**
  564.      * compile block function tag
  565.      *
  566.      * sets $output to compiled block function tag
  567.      * @param string $tag_command
  568.      * @param string $tag_args
  569.      * @param string $tag_modifier
  570.      * @param string $output
  571.      * @return boolean
  572.      */
  573.     function _compile_block_tag($tag_command, $tag_args, $tag_modifier, &$output)
  574.     {
  575.         if ($tag_command{0} == '/') {
  576.             $start_tag = false;
  577.             $tag_command = substr($tag_command, 1);
  578.         } else
  579.             $start_tag = true;
  580.         $found = false;
  581.         $have_function = true;
  582.         /*
  583.          * First we check if the block function has already been registered
  584.          * or loaded from a plugin file.
  585.          */
  586.         if (isset($this->_plugins['block'][$tag_command])) {
  587.             $found = true;
  588.             $plugin_func = $this->_plugins['block'][$tag_command][0];
  589.             if (!is_callable($plugin_func)) {
  590.                 $message = "block function '$tag_command' is not implemented";
  591.                 $have_function = false;
  592.             }
  593.         }
  594.         /*
  595.          * Otherwise we need to load plugin file and look for the function
  596.          * inside it.
  597.          */
  598.         else if ($plugin_file = $this->_get_plugin_filepath('block', $tag_command)) {
  599.             $found = true;
  600.             include_once $plugin_file;
  601.             $plugin_func = 'smarty_block_' . $tag_command;
  602.             if (!function_exists($plugin_func)) {
  603.                 $message = "plugin function $plugin_func() not found in $plugin_filen";
  604.                 $have_function = false;
  605.             } else {
  606.                 $this->_plugins['block'][$tag_command] = array($plugin_func, null, null, null, true);
  607.             }
  608.         }
  609.         if (!$found) {
  610.             return false;
  611.         } else if (!$have_function) {
  612.             $this->_syntax_error($message, E_USER_WARNING, __FILE__, __LINE__);
  613.             return true;
  614.         }
  615.         /*
  616.          * Even though we've located the plugin function, compilation
  617.          * happens only once, so the plugin will still need to be loaded
  618.          * at runtime for future requests.
  619.          */
  620.         $this->_add_plugin('block', $tag_command);
  621.         if ($start_tag)
  622.             $this->_push_tag($tag_command);
  623.         else
  624.             $this->_pop_tag($tag_command);
  625.         if ($start_tag) {
  626.             $output = '<?php ' . $this->_push_cacheable_state('block', $tag_command);
  627.             $attrs = $this->_parse_attrs($tag_args);
  628.             $arg_list = $this->_compile_arg_list('block', $tag_command, $attrs, $_cache_attrs='');
  629.             $output .= "$_cache_attrs$this->_tag_stack[] = array('$tag_command', array(".implode(',', $arg_list).')); ';
  630.             $output .= $this->_compile_plugin_call('block', $tag_command).'($this->_tag_stack[count($this->_tag_stack)-1][1], null, $this, $_block_repeat=true);';
  631.             $output .= 'while ($_block_repeat) { ob_start(); ?>';
  632.         } else {
  633.             $output = '<?php $this->_block_content = ob_get_contents(); ob_end_clean(); ';
  634.             $_out_tag_text = $this->_compile_plugin_call('block', $tag_command).'($this->_tag_stack[count($this->_tag_stack)-1][1], $this->_block_content, $this, $_block_repeat=false)';
  635.             if ($tag_modifier != '') {
  636.                 $this->_parse_modifiers($_out_tag_text, $tag_modifier);
  637.             }
  638.             $output .= 'echo '.$_out_tag_text.'; } ';
  639.             $output .= " array_pop($this->_tag_stack); " . $this->_pop_cacheable_state('block', $tag_command) . '?>';
  640.         }
  641.         return true;
  642.     }
  643.     /**
  644.      * compile custom function tag
  645.      *
  646.      * @param string $tag_command
  647.      * @param string $tag_args
  648.      * @param string $tag_modifier
  649.      * @return string
  650.      */
  651.     function _compile_custom_tag($tag_command, $tag_args, $tag_modifier, &$output)
  652.     {
  653.         $found = false;
  654.         $have_function = true;
  655.         /*
  656.          * First we check if the custom function has already been registered
  657.          * or loaded from a plugin file.
  658.          */
  659.         if (isset($this->_plugins['function'][$tag_command])) {
  660.             $found = true;
  661.             $plugin_func = $this->_plugins['function'][$tag_command][0];
  662.             if (!is_callable($plugin_func)) {
  663.                 $message = "custom function '$tag_command' is not implemented";
  664.                 $have_function = false;
  665.             }
  666.         }
  667.         /*
  668.          * Otherwise we need to load plugin file and look for the function
  669.          * inside it.
  670.          */
  671.         else if ($plugin_file = $this->_get_plugin_filepath('function', $tag_command)) {
  672.             $found = true;
  673.             include_once $plugin_file;
  674.             $plugin_func = 'smarty_function_' . $tag_command;
  675.             if (!function_exists($plugin_func)) {
  676.                 $message = "plugin function $plugin_func() not found in $plugin_filen";
  677.                 $have_function = false;
  678.             } else {
  679.                 $this->_plugins['function'][$tag_command] = array($plugin_func, null, null, null, true);
  680.             }
  681.         }
  682.         if (!$found) {
  683.             return false;
  684.         } else if (!$have_function) {
  685.             $this->_syntax_error($message, E_USER_WARNING, __FILE__, __LINE__);
  686.             return true;
  687.         }
  688.         /* declare plugin to be loaded on display of the template that
  689.            we compile right now */
  690.         $this->_add_plugin('function', $tag_command);
  691.         $_cacheable_state = $this->_push_cacheable_state('function', $tag_command);
  692.         $attrs = $this->_parse_attrs($tag_args);
  693.         $arg_list = $this->_compile_arg_list('function', $tag_command, $attrs, $_cache_attrs='');
  694.         $output = $this->_compile_plugin_call('function', $tag_command).'(array('.implode(',', $arg_list)."), $this)";
  695.         if($tag_modifier != '') {
  696.             $this->_parse_modifiers($output, $tag_modifier);
  697.         }
  698.         if($output != '') {
  699.             $output =  '<?php ' . $_cacheable_state . $_cache_attrs . 'echo ' . $output . ';'
  700.                 . $this->_pop_cacheable_state('function', $tag_command) . "?>" . $this->_additional_newline;
  701.         }
  702.         return true;
  703.     }
  704.     /**
  705.      * compile a registered object tag
  706.      *
  707.      * @param string $tag_command
  708.      * @param array $attrs
  709.      * @param string $tag_modifier
  710.      * @return string
  711.      */
  712.     function _compile_registered_object_tag($tag_command, $attrs, $tag_modifier)
  713.     {
  714.         if ($tag_command{0} == '/') {
  715.             $start_tag = false;
  716.             $tag_command = substr($tag_command, 1);
  717.         } else {
  718.             $start_tag = true;
  719.         }
  720.         list($object, $obj_comp) = explode('->', $tag_command);
  721.         $arg_list = array();
  722.         if(count($attrs)) {
  723.             $_assign_var = false;
  724.             foreach ($attrs as $arg_name => $arg_value) {
  725.                 if($arg_name == 'assign') {
  726.                     $_assign_var = $arg_value;
  727.                     unset($attrs['assign']);
  728.                     continue;
  729.                 }
  730.                 if (is_bool($arg_value))
  731.                     $arg_value = $arg_value ? 'true' : 'false';
  732.                 $arg_list[] = "'$arg_name' => $arg_value";
  733.             }
  734.         }
  735.         if($this->_reg_objects[$object][2]) {
  736.             // smarty object argument format
  737.             $args = "array(".implode(',', (array)$arg_list)."), $this";
  738.         } else {
  739.             // traditional argument format
  740.             $args = implode(',', array_values($attrs));
  741.             if (empty($args)) {
  742.                 $args = 'null';
  743.             }
  744.         }
  745.         $prefix = '';
  746.         $postfix = '';
  747.         $newline = '';
  748.         if(!is_object($this->_reg_objects[$object][0])) {
  749.             $this->_trigger_fatal_error("registered '$object' is not an object" , $this->_current_file, $this->_current_line_no, __FILE__, __LINE__);
  750.         } elseif(!empty($this->_reg_objects[$object][1]) && !in_array($obj_comp, $this->_reg_objects[$object][1])) {
  751.             $this->_trigger_fatal_error("'$obj_comp' is not a registered component of object '$object'", $this->_current_file, $this->_current_line_no, __FILE__, __LINE__);
  752.         } elseif(method_exists($this->_reg_objects[$object][0], $obj_comp)) {
  753.             // method
  754.             if(in_array($obj_comp, $this->_reg_objects[$object][3])) {
  755.                 // block method
  756.                 if ($start_tag) {
  757.                     $prefix = "$this->_tag_stack[] = array('$obj_comp', $args); ";
  758.                     $prefix .= "$this->_reg_objects['$object'][0]->$obj_comp($this->_tag_stack[count($this->_tag_stack)-1][1], null, $this, $_block_repeat=true); ";
  759.                     $prefix .= "while ($_block_repeat) { ob_start();";
  760.                     $return = null;
  761.                     $postfix = '';
  762.             } else {
  763.                     $prefix = "$this->_obj_block_content = ob_get_contents(); ob_end_clean(); ";
  764.                     $return = "$this->_reg_objects['$object'][0]->$obj_comp($this->_tag_stack[count($this->_tag_stack)-1][1], $this->_obj_block_content, $this, $_block_repeat=false)";
  765.                     $postfix = "} array_pop($this->_tag_stack);";
  766.                 }
  767.             } else {
  768.                 // non-block method
  769.                 $return = "$this->_reg_objects['$object'][0]->$obj_comp($args)";
  770.             }
  771.         } else {
  772.             // property
  773.             $return = "$this->_reg_objects['$object'][0]->$obj_comp";
  774.         }
  775.         if($return != null) {
  776.             if($tag_modifier != '') {
  777.                 $this->_parse_modifiers($return, $tag_modifier);
  778.             }
  779.             if(!empty($_assign_var)) {
  780.                 $output = "$this->assign('" . $this->_dequote($_assign_var) ."',  $return);";
  781.             } else {
  782.                 $output = 'echo ' . $return . ';';
  783.                 $newline = $this->_additional_newline;
  784.             }
  785.         } else {
  786.             $output = '';
  787.         }
  788.         return '<?php ' . $prefix . $output . $postfix . "?>" . $newline;
  789.     }
  790.     /**
  791.      * Compile {insert ...} tag
  792.      *
  793.      * @param string $tag_args
  794.      * @return string
  795.      */
  796.     function _compile_insert_tag($tag_args)
  797.     {
  798.         $attrs = $this->_parse_attrs($tag_args);
  799.         $name = $this->_dequote($attrs['name']);
  800.         if (empty($name)) {
  801.             $this->_syntax_error("missing insert name", E_USER_ERROR, __FILE__, __LINE__);
  802.         }
  803.         if (!empty($attrs['script'])) {
  804.             $delayed_loading = true;
  805.         } else {
  806.             $delayed_loading = false;
  807.         }
  808.         foreach ($attrs as $arg_name => $arg_value) {
  809.             if (is_bool($arg_value))
  810.                 $arg_value = $arg_value ? 'true' : 'false';
  811.             $arg_list[] = "'$arg_name' => $arg_value";
  812.         }
  813.         $this->_add_plugin('insert', $name, $delayed_loading);
  814.         $_params = "array('args' => array(".implode(', ', (array)$arg_list)."))";
  815.         return "<?php require_once(SMARTY_CORE_DIR . 'core.run_insert_handler.php');necho smarty_core_run_insert_handler($_params, $this); ?>" . $this->_additional_newline;
  816.     }
  817.     /**
  818.      * Compile {include ...} tag
  819.      *
  820.      * @param string $tag_args
  821.      * @return string
  822.      */
  823.     function _compile_include_tag($tag_args)
  824.     {
  825.         $attrs = $this->_parse_attrs($tag_args);
  826.         $arg_list = array();
  827.         if (empty($attrs['file'])) {
  828.             $this->_syntax_error("missing 'file' attribute in include tag", E_USER_ERROR, __FILE__, __LINE__);
  829.         }
  830.         foreach ($attrs as $arg_name => $arg_value) {
  831.             if ($arg_name == 'file') {
  832.                 $include_file = $arg_value;
  833.                 continue;
  834.             } else if ($arg_name == 'assign') {
  835.                 $assign_var = $arg_value;
  836.                 continue;
  837.             }
  838.             if (is_bool($arg_value))
  839.                 $arg_value = $arg_value ? 'true' : 'false';
  840.             $arg_list[] = "'$arg_name' => $arg_value";
  841.         }
  842.         $output = '<?php ';
  843.         if (isset($assign_var)) {
  844.             $output .= "ob_start();n";
  845.         }
  846.         $output .=
  847.             "$_smarty_tpl_vars = $this->_tpl_vars;n";
  848.         $_params = "array('smarty_include_tpl_file' => " . $include_file . ", 'smarty_include_vars' => array(".implode(',', (array)$arg_list)."))";
  849.         $output .= "$this->_smarty_include($_params);n" .
  850.         "$this->_tpl_vars = $_smarty_tpl_vars;n" .
  851.         "unset($_smarty_tpl_vars);n";
  852.         if (isset($assign_var)) {
  853.             $output .= "$this->assign(" . $assign_var . ", ob_get_contents()); ob_end_clean();n";
  854.         }
  855.         $output .= ' ?>';
  856.         return $output;
  857.     }
  858.     /**
  859.      * Compile {include ...} tag
  860.      *
  861.      * @param string $tag_args
  862.      * @return string
  863.      */
  864.     function _compile_include_php_tag($tag_args)
  865.     {
  866.         $attrs = $this->_parse_attrs($tag_args);
  867.         if (empty($attrs['file'])) {
  868.             $this->_syntax_error("missing 'file' attribute in include_php tag", E_USER_ERROR, __FILE__, __LINE__);
  869.         }
  870.         $assign_var = (empty($attrs['assign'])) ? '' : $this->_dequote($attrs['assign']);
  871.         $once_var = (empty($attrs['once']) || $attrs['once']=='false') ? 'false' : 'true';
  872.         $arg_list = array();
  873.         foreach($attrs as $arg_name => $arg_value) {
  874.             if($arg_name != 'file' AND $arg_name != 'once' AND $arg_name != 'assign') {
  875.                 if(is_bool($arg_value))
  876.                     $arg_value = $arg_value ? 'true' : 'false';
  877.                 $arg_list[] = "'$arg_name' => $arg_value";
  878.             }
  879.         }
  880.         $_params = "array('smarty_file' => " . $attrs['file'] . ", 'smarty_assign' => '$assign_var', 'smarty_once' => $once_var, 'smarty_include_vars' => array(".implode(',', $arg_list)."))";
  881.         return "<?php require_once(SMARTY_CORE_DIR . 'core.smarty_include_php.php');nsmarty_core_smarty_include_php($_params, $this); ?>" . $this->_additional_newline;
  882.     }
  883.     /**
  884.      * Compile {section ...} tag
  885.      *
  886.      * @param string $tag_args
  887.      * @return string
  888.      */
  889.     function _compile_section_start($tag_args)
  890.     {
  891.         $attrs = $this->_parse_attrs($tag_args);
  892.         $arg_list = array();
  893.         $output = '<?php ';
  894.         $section_name = $attrs['name'];
  895.         if (empty($section_name)) {
  896.             $this->_syntax_error("missing section name", E_USER_ERROR, __FILE__, __LINE__);
  897.         }
  898.         $output .= "unset($this->_sections[$section_name]);n";
  899.         $section_props = "$this->_sections[$section_name]";
  900.         foreach ($attrs as $attr_name => $attr_value) {
  901.             switch ($attr_name) {
  902.                 case 'loop':
  903.                     $output .= "{$section_props}['loop'] = is_array($_loop=$attr_value) ? count($_loop) : max(0, (int)$_loop); unset($_loop);n";
  904.                     break;
  905.                 case 'show':
  906.                     if (is_bool($attr_value))
  907.                         $show_attr_value = $attr_value ? 'true' : 'false';
  908.                     else
  909.                         $show_attr_value = "(bool)$attr_value";
  910.                     $output .= "{$section_props}['show'] = $show_attr_value;n";
  911.                     break;
  912.                 case 'name':
  913.                     $output .= "{$section_props}['$attr_name'] = $attr_value;n";
  914.                     break;
  915.                 case 'max':
  916.                 case 'start':
  917.                     $output .= "{$section_props}['$attr_name'] = (int)$attr_value;n";
  918.                     break;
  919.                 case 'step':
  920.                     $output .= "{$section_props}['$attr_name'] = ((int)$attr_value) == 0 ? 1 : (int)$attr_value;n";
  921.                     break;
  922.                 default:
  923.                     $this->_syntax_error("unknown section attribute - '$attr_name'", E_USER_ERROR, __FILE__, __LINE__);
  924.                     break;
  925.             }
  926.         }
  927.         if (!isset($attrs['show']))
  928.             $output .= "{$section_props}['show'] = true;n";
  929.         if (!isset($attrs['loop']))
  930.             $output .= "{$section_props}['loop'] = 1;n";
  931.         if (!isset($attrs['max']))
  932.             $output .= "{$section_props}['max'] = {$section_props}['loop'];n";
  933.         else
  934.             $output .= "if ({$section_props}['max'] < 0)n" .
  935.                        "    {$section_props}['max'] = {$section_props}['loop'];n";
  936.         if (!isset($attrs['step']))
  937.             $output .= "{$section_props}['step'] = 1;n";
  938.         if (!isset($attrs['start']))
  939.             $output .= "{$section_props}['start'] = {$section_props}['step'] > 0 ? 0 : {$section_props}['loop']-1;n";
  940.         else {
  941.             $output .= "if ({$section_props}['start'] < 0)n" .
  942.                        "    {$section_props}['start'] = max({$section_props}['step'] > 0 ? 0 : -1, {$section_props}['loop'] + {$section_props}['start']);n" .
  943.                        "elsen" .
  944.                        "    {$section_props}['start'] = min({$section_props}['start'], {$section_props}['step'] > 0 ? {$section_props}['loop'] : {$section_props}['loop']-1);n";
  945.         }
  946.         $output .= "if ({$section_props}['show']) {n";
  947.         if (!isset($attrs['start']) && !isset($attrs['step']) && !isset($attrs['max'])) {
  948.             $output .= "    {$section_props}['total'] = {$section_props}['loop'];n";
  949.         } else {
  950.             $output .= "    {$section_props}['total'] = min(ceil(({$section_props}['step'] > 0 ? {$section_props}['loop'] - {$section_props}['start'] : {$section_props}['start']+1)/abs({$section_props}['step'])), {$section_props}['max']);n";
  951.         }
  952.         $output .= "    if ({$section_props}['total'] == 0)n" .
  953.                    "        {$section_props}['show'] = false;n" .
  954.                    "} elsen" .
  955.                    "    {$section_props}['total'] = 0;n";
  956.         $output .= "if ({$section_props}['show']):n";
  957.         $output .= "
  958.             for ({$section_props}['index'] = {$section_props}['start'], {$section_props}['iteration'] = 1;
  959.                  {$section_props}['iteration'] <= {$section_props}['total'];
  960.                  {$section_props}['index'] += {$section_props}['step'], {$section_props}['iteration']++):n";
  961.         $output .= "{$section_props}['rownum'] = {$section_props}['iteration'];n";
  962.         $output .= "{$section_props}['index_prev'] = {$section_props}['index'] - {$section_props}['step'];n";
  963.         $output .= "{$section_props}['index_next'] = {$section_props}['index'] + {$section_props}['step'];n";
  964.         $output .= "{$section_props}['first']      = ({$section_props}['iteration'] == 1);n";
  965.         $output .= "{$section_props}['last']       = ({$section_props}['iteration'] == {$section_props}['total']);n";
  966.         $output .= "?>";
  967.         return $output;
  968.     }
  969.     /**
  970.      * Compile {foreach ...} tag.
  971.      *
  972.      * @param string $tag_args
  973.      * @return string
  974.      */
  975.     function _compile_foreach_start($tag_args)
  976.     {
  977.         $attrs = $this->_parse_attrs($tag_args);
  978.         $arg_list = array();
  979.         if (empty($attrs['from'])) {
  980.             return $this->_syntax_error("foreach: missing 'from' attribute", E_USER_ERROR, __FILE__, __LINE__);
  981.         }
  982.         $from = $attrs['from'];
  983.         if (empty($attrs['item'])) {
  984.             return $this->_syntax_error("foreach: missing 'item' attribute", E_USER_ERROR, __FILE__, __LINE__);
  985.         }
  986.         $item = $this->_dequote($attrs['item']);
  987.         if (!preg_match('~^w+$~', $item)) {
  988.             return $this->_syntax_error("'foreach: item' must be a variable name (literal string)", E_USER_ERROR, __FILE__, __LINE__);
  989.         }
  990.         if (isset($attrs['key'])) {
  991.             $key  = $this->_dequote($attrs['key']);
  992.             if (!preg_match('~^w+$~', $key)) {
  993.                 return $this->_syntax_error("foreach: 'key' must to be a variable name (literal string)", E_USER_ERROR, __FILE__, __LINE__);
  994.             }
  995.             $key_part = "$this->_tpl_vars['$key'] => ";
  996.         } else {
  997.             $key = null;
  998.             $key_part = '';
  999.         }
  1000.         if (isset($attrs['name'])) {
  1001.             $name = $attrs['name'];
  1002.         } else {
  1003.             $name = null;
  1004.         }
  1005.         $output = '<?php ';
  1006.         if (isset($name)) {
  1007.             $foreach_props = "$this->_foreach[$name]";
  1008.             $output .= "if (isset($this->_foreach[$name])) unset($this->_foreach[$name]);n";
  1009.             $output .= "{$foreach_props}['total'] = count($_from = (array)$from);n";
  1010.             $output .= "{$foreach_props}['show'] = {$foreach_props}['total'] > 0;n";
  1011.             $output .= "if ({$foreach_props}['show']):n";
  1012.             $output .= "{$foreach_props}['iteration'] = 0;n";
  1013.             $output .= "    foreach ($_from as $key_part$this->_tpl_vars['$item']):n";
  1014.             $output .= "        {$foreach_props}['iteration']++;n";
  1015.             $output .= "        {$foreach_props}['first'] = ({$foreach_props}['iteration'] == 1);n";
  1016.             $output .= "        {$foreach_props}['last']  = ({$foreach_props}['iteration'] == {$foreach_props}['total']);n";
  1017.         } else {
  1018.             $output .= "if (count($_from = (array)$from)):n";
  1019.             $output .= "    foreach ($_from as $key_part$this->_tpl_vars['$item']):n";
  1020.         }
  1021.         $output .= '?>';
  1022.         return $output;
  1023.     }
  1024.     /**
  1025.      * Compile {capture} .. {/capture} tags
  1026.      *
  1027.      * @param boolean $start true if this is the {capture} tag
  1028.      * @param string $tag_args
  1029.      * @return string
  1030.      */
  1031.     function _compile_capture_tag($start, $tag_args = '')
  1032.     {
  1033.         $attrs = $this->_parse_attrs($tag_args);
  1034.         if ($start) {
  1035.             if (isset($attrs['name']))
  1036.                 $buffer = $attrs['name'];
  1037.             else
  1038.                 $buffer = "'default'";
  1039.             if (isset($attrs['assign']))
  1040.                 $assign = $attrs['assign'];
  1041.             else
  1042.                 $assign = null;
  1043.             $output = "<?php ob_start(); ?>";
  1044.             $this->_capture_stack[] = array($buffer, $assign);
  1045.         } else {
  1046.             list($buffer, $assign) = array_pop($this->_capture_stack);
  1047.             $output = "<?php $this->_smarty_vars['capture'][$buffer] = ob_get_contents(); ";
  1048.             if (isset($assign)) {
  1049.                 $output .= " $this->assign($assign, ob_get_contents());";
  1050.             }
  1051.             $output .= "ob_end_clean(); ?>";
  1052.         }
  1053.         return $output;
  1054.     }
  1055.     /**
  1056.      * Compile {if ...} tag
  1057.      *
  1058.      * @param string $tag_args
  1059.      * @param boolean $elseif if true, uses elseif instead of if
  1060.      * @return string
  1061.      */
  1062.     function _compile_if_tag($tag_args, $elseif = false)
  1063.     {
  1064.         /* Tokenize args for 'if' tag. */
  1065.         preg_match_all('~(?>
  1066.                 ' . $this->_obj_call_regexp . '(?:' . $this->_mod_regexp . '*)? | # valid object call
  1067.                 ' . $this->_var_regexp . '(?:' . $this->_mod_regexp . '*)?    | # var or quoted string
  1068.                 -?0[xX][0-9a-fA-F]+|-?d+(?:.d+)?|.d+|!==|===|==|!=|<>|<<|>>|<=|>=|&&||||(|)|,|!|^|=|&|~|<|>|||%|+|-|/|*|@    | # valid non-word token
  1069.                 bw+b                                                        | # valid word token
  1070.                 S+                                                           # anything else
  1071.                 )~x', $tag_args, $match);
  1072.         $tokens = $match[0];
  1073.         // make sure we have balanced parenthesis
  1074.         $token_count = array_count_values($tokens);
  1075.         if(isset($token_count['(']) && $token_count['('] != $token_count[')']) {
  1076.             $this->_syntax_error("unbalanced parenthesis in if statement", E_USER_ERROR, __FILE__, __LINE__);
  1077.         }
  1078.         $is_arg_stack = array();
  1079.         for ($i = 0; $i < count($tokens); $i++) {
  1080.             $token = &$tokens[$i];
  1081.             switch (strtolower($token)) {
  1082.                 case '!':
  1083.                 case '%':
  1084.                 case '!==':
  1085.                 case '==':
  1086.                 case '===':
  1087.                 case '>':
  1088.                 case '<':
  1089.                 case '!=':
  1090.                 case '<>':
  1091.                 case '<<':
  1092.                 case '>>':
  1093.                 case '<=':
  1094.                 case '>=':
  1095.                 case '&&':
  1096.                 case '||':
  1097.                 case '|':
  1098.                 case '^':
  1099.                 case '&':
  1100.                 case '~':
  1101.                 case ')':
  1102.                 case ',':
  1103.                 case '+':
  1104.                 case '-':
  1105.                 case '*':
  1106.                 case '/':
  1107.                 case '@':
  1108.                     break;
  1109.                 case 'eq':
  1110.                     $token = '==';
  1111.                     break;
  1112.                 case 'ne':
  1113.                 case 'neq':
  1114.                     $token = '!=';
  1115.                     break;
  1116.                 case 'lt':
  1117.                     $token = '<';
  1118.                     break;
  1119.                 case 'le':
  1120.                 case 'lte':
  1121.                     $token = '<=';
  1122.                     break;
  1123.                 case 'gt':
  1124.                     $token = '>';
  1125.                     break;
  1126.                 case 'ge':
  1127.                 case 'gte':
  1128.                     $token = '>=';
  1129.                     break;
  1130.                 case 'and':
  1131.                     $token = '&&';
  1132.                     break;
  1133.                 case 'or':
  1134.                     $token = '||';
  1135.                     break;
  1136.                 case 'not':
  1137.                     $token = '!';
  1138.                     break;
  1139.                 case 'mod':
  1140.                     $token = '%';
  1141.                     break;
  1142.                 case '(':
  1143.                     array_push($is_arg_stack, $i);
  1144.                     break;
  1145.                 case 'is':
  1146.                     /* If last token was a ')', we operate on the parenthesized
  1147.                        expression. The start of the expression is on the stack.
  1148.                        Otherwise, we operate on the last encountered token. */
  1149.                     if ($tokens[$i-1] == ')')
  1150.                         $is_arg_start = array_pop($is_arg_stack);
  1151.                     else
  1152.                         $is_arg_start = $i-1;
  1153.                     /* Construct the argument for 'is' expression, so it knows
  1154.                        what to operate on. */
  1155.                     $is_arg = implode(' ', array_slice($tokens, $is_arg_start, $i - $is_arg_start));
  1156.                     /* Pass all tokens from next one until the end to the
  1157.                        'is' expression parsing function. The function will
  1158.                        return modified tokens, where the first one is the result
  1159.                        of the 'is' expression and the rest are the tokens it
  1160.                        didn't touch. */
  1161.                     $new_tokens = $this->_parse_is_expr($is_arg, array_slice($tokens, $i+1));
  1162.                     /* Replace the old tokens with the new ones. */
  1163.                     array_splice($tokens, $is_arg_start, count($tokens), $new_tokens);
  1164.                     /* Adjust argument start so that it won't change from the
  1165.                        current position for the next iteration. */
  1166.                     $i = $is_arg_start;
  1167.                     break;
  1168.                 default:
  1169.                     if(preg_match('~^' . $this->_func_regexp . '$~', $token) ) {
  1170.                             // function call
  1171.                             if($this->security &&
  1172.                                !in_array($token, $this->security_settings['IF_FUNCS'])) {
  1173.                                 $this->_syntax_error("(secure mode) '$token' not allowed in if statement", E_USER_ERROR, __FILE__, __LINE__);
  1174.                             }
  1175.                     } elseif(preg_match('~^' . $this->_obj_call_regexp . '|' . $this->_var_regexp . '(?:' . $this->_mod_regexp . '*)$~', $token)) {
  1176.                         // object or variable
  1177.                         $token = $this->_parse_var_props($token);
  1178.                     } elseif(is_numeric($token)) {
  1179.                         // number, skip it
  1180.                     } else {
  1181.                         $this->_syntax_error("unidentified token '$token'", E_USER_ERROR, __FILE__, __LINE__);
  1182.                     }
  1183.                     break;
  1184.             }
  1185.         }
  1186.         if ($elseif)
  1187.             return '<?php elseif ('.implode(' ', $tokens).'): ?>';
  1188.         else
  1189.             return '<?php if ('.implode(' ', $tokens).'): ?>';
  1190.     }
  1191.     function _compile_arg_list($type, $name, $attrs, &$cache_code) {
  1192.         $arg_list = array();
  1193.         if (isset($type) && isset($name)
  1194.             && isset($this->_plugins[$type])
  1195.             && isset($this->_plugins[$type][$name])
  1196.             && empty($this->_plugins[$type][$name][4])
  1197.             && is_array($this->_plugins[$type][$name][5])
  1198.             ) {
  1199.             /* we have a list of parameters that should be cached */
  1200.             $_cache_attrs = $this->_plugins[$type][$name][5];
  1201.             $_count = $this->_cache_attrs_count++;
  1202.             $cache_code = "$_cache_attrs =& $this->_smarty_cache_attrs('$this->_cache_serial','$_count');";
  1203.         } else {
  1204.             /* no parameters are cached */
  1205.             $_cache_attrs = null;
  1206.         }
  1207.         foreach ($attrs as $arg_name => $arg_value) {
  1208.             if (is_bool($arg_value))
  1209.                 $arg_value = $arg_value ? 'true' : 'false';
  1210.             if (is_null($arg_value))
  1211.                 $arg_value = 'null';
  1212.             if ($_cache_attrs && in_array($arg_name, $_cache_attrs)) {
  1213.                 $arg_list[] = "'$arg_name' => ($this->_cache_including) ? $_cache_attrs['$arg_name'] : ($_cache_attrs['$arg_name']=$arg_value)";
  1214.             } else {
  1215.                 $arg_list[] = "'$arg_name' => $arg_value";
  1216.             }
  1217.         }
  1218.         return $arg_list;
  1219.     }
  1220.     /**
  1221.      * Parse is expression
  1222.      *
  1223.      * @param string $is_arg
  1224.      * @param array $tokens
  1225.      * @return array
  1226.      */
  1227.     function _parse_is_expr($is_arg, $tokens)
  1228.     {
  1229.         $expr_end = 0;
  1230.         $negate_expr = false;
  1231.         if (($first_token = array_shift($tokens)) == 'not') {
  1232.             $negate_expr = true;
  1233.             $expr_type = array_shift($tokens);
  1234.         } else
  1235.             $expr_type = $first_token;
  1236.         switch ($expr_type) {
  1237.             case 'even':
  1238.                 if (isset($tokens[$expr_end]) && $tokens[$expr_end] == 'by') {
  1239.                     $expr_end++;
  1240.                     $expr_arg = $tokens[$expr_end++];
  1241.                     $expr = "!(1 & ($is_arg / " . $this->_parse_var_props($expr_arg) . "))";
  1242.                 } else
  1243.                     $expr = "!(1 & $is_arg)";
  1244.                 break;
  1245.             case 'odd':
  1246.                 if (isset($tokens[$expr_end]) && $tokens[$expr_end] == 'by') {
  1247.                     $expr_end++;
  1248.                     $expr_arg = $tokens[$expr_end++];
  1249.                     $expr = "(1 & ($is_arg / " . $this->_parse_var_props($expr_arg) . "))";
  1250.                 } else
  1251.                     $expr = "(1 & $is_arg)";
  1252.                 break;
  1253.             case 'div':
  1254.                 if (@$tokens[$expr_end] == 'by') {
  1255.                     $expr_end++;
  1256.                     $expr_arg = $tokens[$expr_end++];
  1257.                     $expr = "!($is_arg % " . $this->_parse_var_props($expr_arg) . ")";
  1258.                 } else {
  1259.                     $this->_syntax_error("expecting 'by' after 'div'", E_USER_ERROR, __FILE__, __LINE__);
  1260.                 }
  1261.                 break;
  1262.             default:
  1263.                 $this->_syntax_error("unknown 'is' expression - '$expr_type'", E_USER_ERROR, __FILE__, __LINE__);
  1264.                 break;
  1265.         }
  1266.         if ($negate_expr) {
  1267.             $expr = "!($expr)";
  1268.         }
  1269.         array_splice($tokens, 0, $expr_end, $expr);
  1270.         return $tokens;
  1271.     }
  1272.     /**
  1273.      * Parse attribute string
  1274.      *
  1275.      * @param string $tag_args
  1276.      * @return array
  1277.      */
  1278.     function _parse_attrs($tag_args)
  1279.     {
  1280.         /* Tokenize tag attributes. */
  1281.         preg_match_all('~(?:' . $this->_obj_call_regexp . '|' . $this->_qstr_regexp . ' | (?>[^"'=s]+)
  1282.                          )+ |
  1283.                          [=]
  1284.                         ~x', $tag_args, $match);
  1285.         $tokens       = $match[0];
  1286.         $attrs = array();
  1287.         /* Parse state:
  1288.             0 - expecting attribute name
  1289.             1 - expecting '='
  1290.             2 - expecting attribute value (not '=') */
  1291.         $state = 0;
  1292.         foreach ($tokens as $token) {
  1293.             switch ($state) {
  1294.                 case 0:
  1295.                     /* If the token is a valid identifier, we set attribute name
  1296.                        and go to state 1. */
  1297.                     if (preg_match('~^w+$~', $token)) {
  1298.                         $attr_name = $token;
  1299.                         $state = 1;
  1300.                     } else
  1301.                         $this->_syntax_error("invalid attribute name: '$token'", E_USER_ERROR, __FILE__, __LINE__);
  1302.                     break;
  1303.                 case 1:
  1304.                     /* If the token is '=', then we go to state 2. */
  1305.                     if ($token == '=') {
  1306.                         $state = 2;
  1307.                     } else
  1308.                         $this->_syntax_error("expecting '=' after attribute name '$last_token'", E_USER_ERROR, __FILE__, __LINE__);
  1309.                     break;
  1310.                 case 2:
  1311.                     /* If token is not '=', we set the attribute value and go to
  1312.                        state 0. */
  1313.                     if ($token != '=') {
  1314.                         /* We booleanize the token if it's a non-quoted possible
  1315.                            boolean value. */
  1316.                         if (preg_match('~^(on|yes|true)$~', $token)) {
  1317.                             $token = 'true';
  1318.                         } else if (preg_match('~^(off|no|false)$~', $token)) {
  1319.                             $token = 'false';
  1320.                         } else if ($token == 'null') {
  1321.                             $token = 'null';
  1322.                         } else if (preg_match('~^' . $this->_num_const_regexp . '|0[xX][0-9a-fA-F]+$~', $token)) {
  1323.                             /* treat integer literally */
  1324.                         } else if (!preg_match('~^' . $this->_obj_call_regexp . '|' . $this->_var_regexp . '(?:' . $this->_mod_regexp . ')*$~', $token)) {
  1325.                             /* treat as a string, double-quote it escaping quotes */
  1326.                             $token = '"'.addslashes($token).'"';
  1327.                         }
  1328.                         $attrs[$attr_name] = $token;
  1329.                         $state = 0;
  1330.                     } else
  1331.                         $this->_syntax_error("'=' cannot be an attribute value", E_USER_ERROR, __FILE__, __LINE__);
  1332.                     break;
  1333.             }
  1334.             $last_token = $token;
  1335.         }
  1336.         if($state != 0) {
  1337.             if($state == 1) {
  1338.                 $this->_syntax_error("expecting '=' after attribute name '$last_token'", E_USER_ERROR, __FILE__, __LINE__);
  1339.             } else {
  1340.                 $this->_syntax_error("missing attribute value", E_USER_ERROR, __FILE__, __LINE__);
  1341.             }
  1342.         }
  1343.         $this->_parse_vars_props($attrs);
  1344.         return $attrs;
  1345.     }
  1346.     /**
  1347.      * compile multiple variables and section properties tokens into
  1348.      * PHP code
  1349.      *
  1350.      * @param array $tokens
  1351.      */
  1352.     function _parse_vars_props(&$tokens)
  1353.     {
  1354.         foreach($tokens as $key => $val) {
  1355.             $tokens[$key] = $this->_parse_var_props($val);
  1356.         }
  1357.     }
  1358.     /**
  1359.      * compile single variable and section properties token into
  1360.      * PHP code
  1361.      *
  1362.      * @param string $val
  1363.      * @param string $tag_attrs
  1364.      * @return string
  1365.      */
  1366.     function _parse_var_props($val)
  1367.     {
  1368.         $val = trim($val);
  1369.         if(preg_match('~^(' . $this->_obj_call_regexp . '|' . $this->_dvar_regexp . ')(' . $this->_mod_regexp . '*)$~', $val, $match)) {
  1370.             // $ variable or object
  1371.             $return = $this->_parse_var($match[1]);
  1372.             $modifiers = $match[2];
  1373.             if (!empty($this->default_modifiers) && !preg_match('~(^||)smarty:nodefaults($||)~',$modifiers)) {
  1374.                 $_default_mod_string = implode('|',(array)$this->default_modifiers);
  1375.                 $modifiers = empty($modifiers) ? $_default_mod_string : $_default_mod_string . '|' . $modifiers;
  1376.             }
  1377.             $this->_parse_modifiers($return, $modifiers);
  1378.             return $return;
  1379.         } elseif (preg_match('~^' . $this->_db_qstr_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) {
  1380.                 // double quoted text
  1381.                 preg_match('~^(' . $this->_db_qstr_regexp . ')('. $this->_mod_regexp . '*)$~', $val, $match);
  1382.                 $return = $this->_expand_quoted_text($match[1]);
  1383.                 if($match[2] != '') {
  1384.                     $this->_parse_modifiers($return, $match[2]);
  1385.                 }
  1386.                 return $return;
  1387.             }
  1388.         elseif(preg_match('~^' . $this->_num_const_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) {
  1389.                 // numerical constant
  1390.                 preg_match('~^(' . $this->_num_const_regexp . ')('. $this->_mod_regexp . '*)$~', $val, $match);
  1391.                 if($match[2] != '') {
  1392.                     $this->_parse_modifiers($match[1], $match[2]);
  1393.                     return $match[1];
  1394.                 }
  1395.             }
  1396.         elseif(preg_match('~^' . $this->_si_qstr_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) {
  1397.                 // single quoted text
  1398.                 preg_match('~^(' . $this->_si_qstr_regexp . ')('. $this->_mod_regexp . '*)$~', $val, $match);
  1399.                 if($match[2] != '') {
  1400.                     $this->_parse_modifiers($match[1], $match[2]);
  1401.                     return $match[1];
  1402.                 }
  1403.             }
  1404.         elseif(preg_match('~^' . $this->_cvar_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) {
  1405.                 // config var
  1406.                 return $this->_parse_conf_var($val);
  1407.             }
  1408.         elseif(preg_match('~^' . $this->_svar_regexp . '(?:' . $this->_mod_regexp . '*)$~', $val)) {
  1409.                 // section var
  1410.                 return $this->_parse_section_prop($val);
  1411.             }
  1412.         elseif(!in_array($val, $this->_permitted_tokens) && !is_numeric($val)) {
  1413.             // literal string
  1414.             return $this->_expand_quoted_text('"' . $val .'"');
  1415.         }
  1416.         return $val;
  1417.     }
  1418.     /**
  1419.      * expand quoted text with embedded variables
  1420.      *
  1421.      * @param string $var_expr
  1422.      * @return string
  1423.      */
  1424.     function _expand_quoted_text($var_expr)
  1425.     {
  1426.         // if contains unescaped $, expand it
  1427.         if(preg_match_all('~(?:`(?<!\\)$' . $this->_dvar_guts_regexp . '(?:' . $this->_obj_ext_regexp . ')*`)|(?:(?<!\\)$w+([[a-zA-Z0-9]+])*)~', $var_expr, $_match)) {
  1428.             $_match = $_match[0];
  1429.             rsort($_match);
  1430.             reset($_match);
  1431.             foreach($_match as $_var) {
  1432.                 $var_expr = str_replace ($_var, '".(' . $this->_parse_var(str_replace('`','',$_var)) . ')."', $var_expr);
  1433.             }
  1434.             $_return = preg_replace('~.""|(?<!\\)"".~', '', $var_expr);
  1435.         } else {
  1436.             $_return = $var_expr;
  1437.         }
  1438.         // replace double quoted literal string with single quotes
  1439.         $_return = preg_replace('~^"([sw]+)"$~',"'\1'",$_return);
  1440.         return $_return;
  1441.     }
  1442.     /**
  1443.      * parse variable expression into PHP code
  1444.      *
  1445.      * @param string $var_expr
  1446.      * @param string $output
  1447.      * @return string
  1448.      */
  1449.     function _parse_var($var_expr)
  1450.     {
  1451.         $_has_math = false;
  1452.         $_math_vars = preg_split('~('.$this->_dvar_math_regexp.'|'.$this->_qstr_regexp.')~', $var_expr, -1, PREG_SPLIT_DELIM_CAPTURE);
  1453.         if(count($_math_vars) > 1) {
  1454.             $_first_var = "";
  1455.             $_complete_var = "";
  1456.             $_output = "";
  1457.             // simple check if there is any math, to stop recursion (due to modifiers with "xx % yy" as parameter)
  1458.             foreach($_math_vars as $_k => $_math_var) {
  1459.                 $_math_var = $_math_vars[$_k];
  1460.                 if(!empty($_math_var) || is_numeric($_math_var)) {
  1461.                     // hit a math operator, so process the stuff which came before it
  1462.                     if(preg_match('~^' . $this->_dvar_math_regexp . '$~', $_math_var)) {
  1463.                         $_has_math = true;
  1464.                         if(!empty($_complete_var) || is_numeric($_complete_var)) {
  1465.                             $_output .= $this->_parse_var($_complete_var);
  1466.                         }
  1467.                         // just output the math operator to php
  1468.                         $_output .= $_math_var;
  1469.                         if(empty($_first_var))
  1470.                             $_first_var = $_complete_var;
  1471.                         $_complete_var = "";
  1472.                     } else {
  1473.                         $_complete_var .= $_math_var;
  1474.                     }
  1475.                 }
  1476.             }
  1477.             if($_has_math) {
  1478.                 if(!empty($_complete_var) || is_numeric($_complete_var))
  1479.                     $_output .= $this->_parse_var($_complete_var);
  1480.                 // get the modifiers working (only the last var from math + modifier is left)
  1481.                 $var_expr = $_complete_var;
  1482.             }
  1483.         }
  1484.         // prevent cutting of first digit in the number (we _definitly_ got a number if the first char is a digit)
  1485.         if(is_numeric($var_expr{0}))
  1486.             $_var_ref = $var_expr;
  1487.         else
  1488.             $_var_ref = substr($var_expr, 1);
  1489.         
  1490.         if(!$_has_math) {
  1491.             
  1492.             // get [foo] and .foo and ->foo and (...) pieces
  1493.             preg_match_all('~(?:^w+)|' . $this->_obj_params_regexp . '|(?:' . $this->_var_bracket_regexp . ')|->$?w+|.$?w+|S+~', $_var_ref, $match);
  1494.                         
  1495.             $_indexes = $match[0];
  1496.             $_var_name = array_shift($_indexes);
  1497.             /* Handle $smarty.* variable references as a special case. */
  1498.             if ($_var_name == 'smarty') {
  1499.                 /*
  1500.                  * If the reference could be compiled, use the compiled output;
  1501.                  * otherwise, fall back on the $smarty variable generated at
  1502.                  * run-time.
  1503.                  */
  1504.                 if (($smarty_ref = $this->_compile_smarty_ref($_indexes)) !== null) {
  1505.                     $_output = $smarty_ref;
  1506.                 } else {
  1507.                     $_var_name = substr(array_shift($_indexes), 1);
  1508.                     $_output = "$this->_smarty_vars['$_var_name']";
  1509.                 }
  1510.             } elseif(is_numeric($_var_name) && is_numeric($var_expr{0})) {
  1511.                 // because . is the operator for accessing arrays thru inidizes we need to put it together again for floating point numbers
  1512.                 if(count($_indexes) > 0)
  1513.                 {
  1514.                     $_var_name .= implode("", $_indexes);
  1515.                     $_indexes = array();
  1516.                 }
  1517.                 $_output = $_var_name;
  1518.             } else {
  1519.                 $_output = "$this->_tpl_vars['$_var_name']";
  1520.             }
  1521.             foreach ($_indexes as $_index) {
  1522.                 if ($_index{0} == '[') {
  1523.                     $_index = substr($_index, 1, -1);
  1524.                     if (is_numeric($_index)) {
  1525.                         $_output .= "[$_index]";
  1526.                     } elseif ($_index{0} == '$') {
  1527.                         if (strpos($_index, '.') !== false) {
  1528.                             $_output .= '[' . $this->_parse_var($_index) . ']';
  1529.                         } else {
  1530.                             $_output .= "[$this->_tpl_vars['" . substr($_index, 1) . "']]";
  1531.                         }
  1532.                     } else {
  1533.                         $_var_parts = explode('.', $_index);
  1534.                         $_var_section = $_var_parts[0];
  1535.                         $_var_section_prop = isset($_var_parts[1]) ? $_var_parts[1] : 'index';
  1536.                         $_output .= "[$this->_sections['$_var_section']['$_var_section_prop']]";
  1537.                     }
  1538.                 } else if ($_index{0} == '.') {
  1539.                     if ($_index{1} == '$')
  1540.                         $_output .= "[$this->_tpl_vars['" . substr($_index, 2) . "']]";
  1541.                     else
  1542.                         $_output .= "['" . substr($_index, 1) . "']";
  1543.                 } else if (substr($_index,0,2) == '->') {
  1544.                     if(substr($_index,2,2) == '__') {
  1545.                         $this->_syntax_error('call to internal object members is not allowed', E_USER_ERROR, __FILE__, __LINE__);
  1546.                     } elseif($this->security && substr($_index, 2, 1) == '_') {
  1547.                         $this->_syntax_error('(secure) call to private object member is not allowed', E_USER_ERROR, __FILE__, __LINE__);
  1548.                     } elseif ($_index{2} == '$') {
  1549.                         if ($this->security) {
  1550.                             $this->_syntax_error('(secure) call to dynamic object member is not allowed', E_USER_ERROR, __FILE__, __LINE__);
  1551.                         } else {
  1552.                             $_output .= '->{(($_var=$this->_tpl_vars[''.substr($_index,3).'']) && substr($_var,0,2)!='__') ? $_var : $this->trigger_error("cannot access property \"$_var\"")}';
  1553.                         }
  1554.                     } else {
  1555.                         $_output .= $_index;
  1556.                     }
  1557.                 } elseif ($_index{0} == '(') {
  1558.                     $_index = $this->_parse_parenth_args($_index);
  1559.                     $_output .= $_index;
  1560.                 } else {
  1561.                     $_output .= $_index;
  1562.                 }
  1563.             }
  1564.         }
  1565.         return $_output;
  1566.     }
  1567.     /**
  1568.      * parse arguments in function call parenthesis
  1569.      *
  1570.      * @param string $parenth_args
  1571.      * @return string
  1572.      */
  1573.     function _parse_parenth_args($parenth_args)
  1574.     {
  1575.         preg_match_all('~' . $this->_param_regexp . '~',$parenth_args, $match);
  1576.         $orig_vals = $match = $match[0];
  1577.         $this->_parse_vars_props($match);
  1578.         $replace = array();
  1579.         for ($i = 0, $count = count($match); $i < $count; $i++) {
  1580.             $replace[$orig_vals[$i]] = $match[$i];
  1581.         }
  1582.         return strtr($parenth_args, $replace);
  1583.     }
  1584.     /**
  1585.      * parse configuration variable expression into PHP code
  1586.      *
  1587.      * @param string $conf_var_expr
  1588.      */
  1589.     function _parse_conf_var($conf_var_expr)
  1590.     {
  1591.         $parts = explode('|', $conf_var_expr, 2);
  1592.         $var_ref = $parts[0];
  1593.         $modifiers = isset($parts[1]) ? $parts[1] : '';
  1594.         $var_name = substr($var_ref, 1, -1);
  1595.         $output = "$this->_config[0]['vars']['$var_name']";
  1596.         $this->_parse_modifiers($output, $modifiers);
  1597.         return $output;
  1598.     }
  1599.     /**
  1600.      * parse section property expression into PHP code
  1601.      *
  1602.      * @param string $section_prop_expr
  1603.      * @return string
  1604.      */
  1605.     function _parse_section_prop($section_prop_expr)
  1606.     {
  1607.         $parts = explode('|', $section_prop_expr, 2);
  1608.         $var_ref = $parts[0];
  1609.         $modifiers = isset($parts[1]) ? $parts[1] : '';
  1610.         preg_match('!%(w+).(w+)%!', $var_ref, $match);
  1611.         $section_name = $match[1];
  1612.         $prop_name = $match[2];
  1613.         $output = "$this->_sections['$section_name']['$prop_name']";
  1614.         $this->_parse_modifiers($output, $modifiers);
  1615.         return $output;
  1616.     }
  1617.     /**
  1618.      * parse modifier chain into PHP code
  1619.      *
  1620.      * sets $output to parsed modified chain
  1621.      * @param string $output
  1622.      * @param string $modifier_string
  1623.      */
  1624.     function _parse_modifiers(&$output, $modifier_string)
  1625.     {
  1626.         preg_match_all('~|(@?w+)((?>:(?:'. $this->_qstr_regexp . '|[^|]+))*)~', '|' . $modifier_string, $_match);
  1627.         list(, $_modifiers, $modifier_arg_strings) = $_match;
  1628.         for ($_i = 0, $_for_max = count($_modifiers); $_i < $_for_max; $_i++) {
  1629.             $_modifier_name = $_modifiers[$_i];
  1630.             if($_modifier_name == 'smarty') {
  1631.                 // skip smarty modifier
  1632.                 continue;
  1633.             }
  1634.             preg_match_all('~:(' . $this->_qstr_regexp . '|[^:]+)~', $modifier_arg_strings[$_i], $_match);
  1635.             $_modifier_args = $_match[1];
  1636.             if ($_modifier_name{0} == '@') {
  1637.                 $_map_array = false;
  1638.                 $_modifier_name = substr($_modifier_name, 1);
  1639.             } else {
  1640.                 $_map_array = true;
  1641.             }
  1642.             if (empty($this->_plugins['modifier'][$_modifier_name])
  1643.                 && !$this->_get_plugin_filepath('modifier', $_modifier_name)
  1644.                 && function_exists($_modifier_name)) {
  1645.                 if ($this->security && !in_array($_modifier_name, $this->security_settings['MODIFIER_FUNCS'])) {
  1646.                     $this->_trigger_fatal_error("[plugin] (secure mode) modifier '$_modifier_name' is not allowed" , $this->_current_file, $this->_current_line_no, __FILE__, __LINE__);
  1647.                 } else {
  1648.                     $this->_plugins['modifier'][$_modifier_name] = array($_modifier_name,  null, null, false);
  1649.                 }
  1650.             }
  1651.             $this->_add_plugin('modifier', $_modifier_name);
  1652.             $this->_parse_vars_props($_modifier_args);
  1653.             if($_modifier_name == 'default') {
  1654.                 // supress notifications of default modifier vars and args
  1655.                 if($output{0} == '$') {
  1656.                     $output = '@' . $output;
  1657.                 }
  1658.                 if(isset($_modifier_args[0]) && $_modifier_args[0]{0} == '$') {
  1659.                     $_modifier_args[0] = '@' . $_modifier_args[0];
  1660.                 }
  1661.             }
  1662.             if (count($_modifier_args) > 0)
  1663.                 $_modifier_args = ', '.implode(', ', $_modifier_args);
  1664.             else
  1665.                 $_modifier_args = '';
  1666.             if ($_map_array) {
  1667.                 $output = "((is_array($_tmp=$output)) ? $this->_run_mod_handler('$_modifier_name', true, $_tmp$_modifier_args) : " . $this->_compile_plugin_call('modifier', $_modifier_name) . "($_tmp$_modifier_args))";
  1668.             } else {
  1669.                 $output = $this->_compile_plugin_call('modifier', $_modifier_name)."($output$_modifier_args)";
  1670.             }
  1671.         }
  1672.     }
  1673.     /**
  1674.      * add plugin
  1675.      *
  1676.      * @param string $type
  1677.      * @param string $name
  1678.      * @param boolean? $delayed_loading
  1679.      */
  1680.     function _add_plugin($type, $name, $delayed_loading = null)
  1681.     {
  1682.         if (!isset($this->_plugin_info[$type])) {
  1683.             $this->_plugin_info[$type] = array();
  1684.         }
  1685.         if (!isset($this->_plugin_info[$type][$name])) {
  1686.             $this->_plugin_info[$type][$name] = array($this->_current_file,
  1687.                                                       $this->_current_line_no,
  1688.                                                       $delayed_loading);
  1689.         }
  1690.     }
  1691.     /**
  1692.      * Compiles references of type $smarty.foo
  1693.      *
  1694.      * @param string $indexes
  1695.      * @return string
  1696.      */
  1697.     function _compile_smarty_ref(&$indexes)
  1698.     {
  1699.         /* Extract the reference name. */
  1700.         $_ref = substr($indexes[0], 1);
  1701.         foreach($indexes as $_index_no=>$_index) {
  1702.             if ($_index{0} != '.' && $_index_no<2 || !preg_match('~^(.|[|->)~', $_index)) {
  1703.                 $this->_syntax_error('$smarty' . implode('', array_slice($indexes, 0, 2)) . ' is an invalid reference', E_USER_ERROR, __FILE__, __LINE__);
  1704.             }
  1705.         }
  1706.         switch ($_ref) {
  1707.             case 'now':
  1708.                 $compiled_ref = 'time()';
  1709.                 $_max_index = 1;
  1710.                 break;
  1711.             case 'foreach':
  1712.             case 'section':
  1713.                 array_shift($indexes);
  1714.                 $_var = $this->_parse_var_props(substr($indexes[0], 1));
  1715.                 if ($_ref == 'foreach')
  1716.                     $compiled_ref = "$this->_foreach[$_var]";
  1717.                 else
  1718.                     $compiled_ref = "$this->_sections[$_var]";
  1719.                 break;
  1720.             case 'get':
  1721.                 $compiled_ref = ($this->request_use_auto_globals) ? '$_GET' : "$GLOBALS['HTTP_GET_VARS']";
  1722.                 break;
  1723.             case 'post':
  1724.                 $compiled_ref = ($this->request_use_auto_globals) ? '$_POST' : "$GLOBALS['HTTP_POST_VARS']";
  1725.                 break;
  1726.             case 'cookies':
  1727.                 $compiled_ref = ($this->request_use_auto_globals) ? '$_COOKIE' : "$GLOBALS['HTTP_COOKIE_VARS']";
  1728.                 break;
  1729.             case 'env':
  1730.                 $compiled_ref = ($this->request_use_auto_globals) ? '$_ENV' : "$GLOBALS['HTTP_ENV_VARS']";
  1731.                 break;
  1732.             case 'server':
  1733.                 $compiled_ref = ($this->request_use_auto_globals) ? '$_SERVER' : "$GLOBALS['HTTP_SERVER_VARS']";
  1734.                 break;
  1735.             case 'session':
  1736.                 $compiled_ref = ($this->request_use_auto_globals) ? '$_SESSION' : "$GLOBALS['HTTP_SESSION_VARS']";
  1737.                 break;
  1738.             /*
  1739.              * These cases are handled either at run-time or elsewhere in the
  1740.              * compiler.
  1741.              */
  1742.             case 'request':
  1743.                 if ($this->request_use_auto_globals) {
  1744.                     $compiled_ref = '$_REQUEST';
  1745.                     break;
  1746.                 } else {
  1747.                     $this->_init_smarty_vars = true;
  1748.                 }
  1749.                 return null;
  1750.             case 'capture':
  1751.                 return null;
  1752.             case 'template':
  1753.                 $compiled_ref = "'$this->_current_file'";
  1754.                 $_max_index = 1;
  1755.                 break;
  1756.             case 'version':
  1757.                 $compiled_ref = "'$this->_version'";
  1758.                 $_max_index = 1;
  1759.                 break;
  1760.             case 'const':
  1761.                 if ($this->security && !$this->security_settings['ALLOW_CONSTANTS']) {
  1762.                     $this->_syntax_error("(secure mode) constants not permitted",
  1763.                                          E_USER_WARNING, __FILE__, __LINE__);
  1764.                     return;
  1765.                 }
  1766.                 array_shift($indexes);
  1767.                 $_val = $this->_parse_var_props(substr($indexes[0],1));
  1768.                 $compiled_ref = '@constant(' . $_val . ')';
  1769.                 $_max_index = 1;
  1770.                 break;
  1771.             case 'config':
  1772.                 $compiled_ref = "$this->_config[0]['vars']";
  1773.                 $_max_index = 3;
  1774.                 break;
  1775.             case 'ldelim':
  1776.                 $compiled_ref = "'$this->left_delimiter'";
  1777.                 break;
  1778.             case 'rdelim':
  1779.                 $compiled_ref = "'$this->right_delimiter'";
  1780.                 break;
  1781.                 
  1782.             default:
  1783.                 $this->_syntax_error('$smarty.' . $_ref . ' is an unknown reference', E_USER_ERROR, __FILE__, __LINE__);
  1784.                 break;
  1785.         }
  1786.         if (isset($_max_index) && count($indexes) > $_max_index) {
  1787.             $this->_syntax_error('$smarty' . implode('', $indexes) .' is an invalid reference', E_USER_ERROR, __FILE__, __LINE__);
  1788.         }
  1789.         array_shift($indexes);
  1790.         return $compiled_ref;
  1791.     }
  1792.     /**
  1793.      * compiles call to plugin of type $type with name $name
  1794.      * returns a string containing the function-name or method call
  1795.      * without the paramter-list that would have follow to make the
  1796.      * call valid php-syntax
  1797.      *
  1798.      * @param string $type
  1799.      * @param string $name
  1800.      * @return string
  1801.      */
  1802.     function _compile_plugin_call($type, $name) {
  1803.         if (isset($this->_plugins[$type][$name])) {
  1804.             /* plugin loaded */
  1805.             if (is_array($this->_plugins[$type][$name][0])) {
  1806.                 return ((is_object($this->_plugins[$type][$name][0][0])) ?
  1807.                         "$this->_plugins['$type']['$name'][0][0]->"    /* method callback */
  1808.                         : (string)($this->_plugins[$type][$name][0][0]).'::'    /* class callback */
  1809.                        ). $this->_plugins[$type][$name][0][1];
  1810.             } else {
  1811.                 /* function callback */
  1812.                 return $this->_plugins[$type][$name][0];
  1813.             }
  1814.         } else {
  1815.             /* plugin not loaded -> auto-loadable-plugin */
  1816.             return 'smarty_'.$type.'_'.$name;
  1817.         }
  1818.     }
  1819.     /**
  1820.      * load pre- and post-filters
  1821.      */
  1822.     function _load_filters()
  1823.     {
  1824.         if (count($this->_plugins['prefilter']) > 0) {
  1825.             foreach ($this->_plugins['prefilter'] as $filter_name => $prefilter) {
  1826.                 if ($prefilter === false) {
  1827.                     unset($this->_plugins['prefilter'][$filter_name]);
  1828.                     $_params = array('plugins' => array(array('prefilter', $filter_name, null, null, false)));
  1829.                     require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
  1830.                     smarty_core_load_plugins($_params, $this);
  1831.                 }
  1832.             }
  1833.         }
  1834.         if (count($this->_plugins['postfilter']) > 0) {
  1835.             foreach ($this->_plugins['postfilter'] as $filter_name => $postfilter) {
  1836.                 if ($postfilter === false) {
  1837.                     unset($this->_plugins['postfilter'][$filter_name]);
  1838.                     $_params = array('plugins' => array(array('postfilter', $filter_name, null, null, false)));
  1839.                     require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
  1840.                     smarty_core_load_plugins($_params, $this);
  1841.                 }
  1842.             }
  1843.         }
  1844.     }
  1845.     /**
  1846.      * Quote subpattern references
  1847.      *
  1848.      * @param string $string
  1849.      * @return string
  1850.      */
  1851.     function _quote_replace($string)
  1852.     {
  1853.         return strtr($string, array('\' => '\\', '$' => '\$'));
  1854.     }
  1855.     /**
  1856.      * display Smarty syntax error
  1857.      *
  1858.      * @param string $error_msg
  1859.      * @param integer $error_type
  1860.      * @param string $file
  1861.      * @param integer $line
  1862.      */
  1863.     function _syntax_error($error_msg, $error_type = E_USER_ERROR, $file=null, $line=null)
  1864.     {
  1865.         $this->_trigger_fatal_error("syntax error: $error_msg", $this->_current_file, $this->_current_line_no, $file, $line, $error_type);
  1866.     }
  1867.     /**
  1868.      * check if the compilation changes from cacheable to
  1869.      * non-cacheable state with the beginning of the current
  1870.      * plugin. return php-code to reflect the transition.
  1871.      * @return string
  1872.      */
  1873.     function _push_cacheable_state($type, $name) {
  1874.         $_cacheable = !isset($this->_plugins[$type][$name]) || $this->_plugins[$type][$name][4];
  1875.         if ($_cacheable
  1876.             || 0<$this->_cacheable_state++) return '';
  1877.         if (!isset($this->_cache_serial)) $this->_cache_serial = md5(uniqid('Smarty'));
  1878.         $_ret = 'if ($this->caching && !$this->_cache_including) { echo '{nocache:'
  1879.             . $this->_cache_serial . '#' . $this->_nocache_count
  1880.             . '}';}';
  1881.         return $_ret;
  1882.     }
  1883.     /**
  1884.      * check if the compilation changes from non-cacheable to
  1885.      * cacheable state with the end of the current plugin return
  1886.      * php-code to reflect the transition.
  1887.      * @return string
  1888.      */
  1889.     function _pop_cacheable_state($type, $name) {
  1890.         $_cacheable = !isset($this->_plugins[$type][$name]) || $this->_plugins[$type][$name][4];
  1891.         if ($_cacheable
  1892.             || --$this->_cacheable_state>0) return '';
  1893.         return 'if ($this->caching && !$this->_cache_including) { echo '{/nocache:'
  1894.             . $this->_cache_serial . '#' . ($this->_nocache_count++)
  1895.             . '}';}';
  1896.     }
  1897.     /**
  1898.      * push opening tag-name, file-name and line-number on the tag-stack
  1899.      * @param string the opening tag's name
  1900.      */
  1901.     function _push_tag($open_tag)
  1902.     {
  1903.         array_push($this->_tag_stack, array($open_tag, $this->_current_line_no));
  1904.     }
  1905.     /**
  1906.      * pop closing tag-name
  1907.      * raise an error if this stack-top doesn't match with the closing tag
  1908.      * @param string the closing tag's name
  1909.      * @return string the opening tag's name
  1910.      */
  1911.     function _pop_tag($close_tag)
  1912.     {
  1913.         $message = '';
  1914.         if (count($this->_tag_stack)>0) {
  1915.             list($_open_tag, $_line_no) = array_pop($this->_tag_stack);
  1916.             if ($close_tag == $_open_tag) {
  1917.                 return $_open_tag;
  1918.             }
  1919.             if ($close_tag == 'if' && ($_open_tag == 'else' || $_open_tag == 'elseif' )) {
  1920.                 return $this->_pop_tag($close_tag);
  1921.             }
  1922.             if ($close_tag == 'section' && $_open_tag == 'sectionelse') {
  1923.                 $this->_pop_tag($close_tag);
  1924.                 return $_open_tag;
  1925.             }
  1926.             if ($close_tag == 'foreach' && $_open_tag == 'foreachelse') {
  1927.                 $this->_pop_tag($close_tag);
  1928.                 return $_open_tag;
  1929.             }
  1930.             if ($_open_tag == 'else' || $_open_tag == 'elseif') {
  1931.                 $_open_tag = 'if';
  1932.             } elseif ($_open_tag == 'sectionelse') {
  1933.                 $_open_tag = 'section';
  1934.             } elseif ($_open_tag == 'foreachelse') {
  1935.                 $_open_tag = 'foreach';
  1936.             }
  1937.             $message = " expected {/$_open_tag} (opened line $_line_no).";
  1938.         }
  1939.         $this->_syntax_error("mismatched tag {/$close_tag}.$message",
  1940.                              E_USER_ERROR, __FILE__, __LINE__);
  1941.     }
  1942. }
  1943. /**
  1944.  * compare to values by their string length
  1945.  *
  1946.  * @access private
  1947.  * @param string $a
  1948.  * @param string $b
  1949.  * @return 0|-1|1
  1950.  */
  1951. function _smarty_sort_length($a, $b)
  1952. {
  1953.     if($a == $b)
  1954.         return 0;
  1955.     if(strlen($a) == strlen($b))
  1956.         return ($a > $b) ? -1 : 1;
  1957.     return (strlen($a) > strlen($b)) ? -1 : 1;
  1958. }
  1959. /* vim: set et: */
  1960. ?>