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

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Project:     Smarty: the PHP compiling template engine
  4.  * File:        Smarty.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.  * For questions, help, comments, discussion, etc., please join the
  21.  * Smarty mailing list. Send a blank e-mail to
  22.  * smarty-general-subscribe@lists.php.net
  23.  *
  24.  * @link http://smarty.php.net/
  25.  * @copyright 2001-2004 ispi of Lincoln, Inc.
  26.  * @author Monte Ohrt <monte@ispi.net>
  27.  * @author Andrei Zmievski <andrei@php.net>
  28.  * @package Smarty
  29.  * @version 2.6.6
  30.  */
  31. /* $Id: Smarty.class.php,v 1.1 2004/10/27 10:57:55 gabest Exp $ */
  32. /**
  33.  * DIR_SEP isn't used anymore, but third party apps might
  34.  */
  35. if(!defined('DIR_SEP')) {
  36.     define('DIR_SEP', DIRECTORY_SEPARATOR);
  37. }
  38. /**
  39.  * set SMARTY_DIR to absolute path to Smarty library files.
  40.  * if not defined, include_path will be used. Sets SMARTY_DIR only if user
  41.  * application has not already defined it.
  42.  */
  43. if (!defined('SMARTY_DIR')) {
  44.     define('SMARTY_DIR', dirname(__FILE__) . DIRECTORY_SEPARATOR);
  45. }
  46. if (!defined('SMARTY_CORE_DIR')) {
  47.     define('SMARTY_CORE_DIR', SMARTY_DIR . 'internals' . DIRECTORY_SEPARATOR);
  48. }
  49. define('SMARTY_PHP_PASSTHRU',   0);
  50. define('SMARTY_PHP_QUOTE',      1);
  51. define('SMARTY_PHP_REMOVE',     2);
  52. define('SMARTY_PHP_ALLOW',      3);
  53. /**
  54.  * @package Smarty
  55.  */
  56. class Smarty
  57. {
  58.     /**#@+
  59.      * Smarty Configuration Section
  60.      */
  61.     /**
  62.      * The name of the directory where templates are located.
  63.      *
  64.      * @var string
  65.      */
  66.     var $template_dir    =  'templates';
  67.     /**
  68.      * The directory where compiled templates are located.
  69.      *
  70.      * @var string
  71.      */
  72.     var $compile_dir     =  'templates_c';
  73.     /**
  74.      * The directory where config files are located.
  75.      *
  76.      * @var string
  77.      */
  78.     var $config_dir      =  'configs';
  79.     /**
  80.      * An array of directories searched for plugins.
  81.      *
  82.      * @var array
  83.      */
  84.     var $plugins_dir     =  array('plugins');
  85.     /**
  86.      * If debugging is enabled, a debug console window will display
  87.      * when the page loads (make sure your browser allows unrequested
  88.      * popup windows)
  89.      *
  90.      * @var boolean
  91.      */
  92.     var $debugging       =  false;
  93.     /**
  94.      * When set, smarty does uses this value as error_reporting-level.
  95.      *
  96.      * @var boolean
  97.      */
  98.     var $error_reporting  =  null;
  99.     /**
  100.      * This is the path to the debug console template. If not set,
  101.      * the default one will be used.
  102.      *
  103.      * @var string
  104.      */
  105.     var $debug_tpl       =  '';
  106.     /**
  107.      * This determines if debugging is enable-able from the browser.
  108.      * <ul>
  109.      *  <li>NONE => no debugging control allowed</li>
  110.      *  <li>URL => enable debugging when SMARTY_DEBUG is found in the URL.</li>
  111.      * </ul>
  112.      * @link http://www.foo.dom/index.php?SMARTY_DEBUG
  113.      * @var string
  114.      */
  115.     var $debugging_ctrl  =  'NONE';
  116.     /**
  117.      * This tells Smarty whether to check for recompiling or not. Recompiling
  118.      * does not need to happen unless a template or config file is changed.
  119.      * Typically you enable this during development, and disable for
  120.      * production.
  121.      *
  122.      * @var boolean
  123.      */
  124.     var $compile_check   =  true;
  125.     /**
  126.      * This forces templates to compile every time. Useful for development
  127.      * or debugging.
  128.      *
  129.      * @var boolean
  130.      */
  131.     var $force_compile   =  false;
  132.     /**
  133.      * This enables template caching.
  134.      * <ul>
  135.      *  <li>0 = no caching</li>
  136.      *  <li>1 = use class cache_lifetime value</li>
  137.      *  <li>2 = use cache_lifetime in cache file</li>
  138.      * </ul>
  139.      * @var integer
  140.      */
  141.     var $caching         =  0;
  142.     /**
  143.      * The name of the directory for cache files.
  144.      *
  145.      * @var string
  146.      */
  147.     var $cache_dir       =  'cache';
  148.     /**
  149.      * This is the number of seconds cached content will persist.
  150.      * <ul>
  151.      *  <li>0 = always regenerate cache</li>
  152.      *  <li>-1 = never expires</li>
  153.      * </ul>
  154.      *
  155.      * @var integer
  156.      */
  157.     var $cache_lifetime  =  3600;
  158.     /**
  159.      * Only used when $caching is enabled. If true, then If-Modified-Since headers
  160.      * are respected with cached content, and appropriate HTTP headers are sent.
  161.      * This way repeated hits to a cached page do not send the entire page to the
  162.      * client every time.
  163.      *
  164.      * @var boolean
  165.      */
  166.     var $cache_modified_check = false;
  167.     /**
  168.      * This determines how Smarty handles "<?php ... ?>" tags in templates.
  169.      * possible values:
  170.      * <ul>
  171.      *  <li>SMARTY_PHP_PASSTHRU -> print tags as plain text</li>
  172.      *  <li>SMARTY_PHP_QUOTE    -> escape tags as entities</li>
  173.      *  <li>SMARTY_PHP_REMOVE   -> remove php tags</li>
  174.      *  <li>SMARTY_PHP_ALLOW    -> execute php tags</li>
  175.      * </ul>
  176.      *
  177.      * @var integer
  178.      */
  179.     var $php_handling    =  SMARTY_PHP_PASSTHRU;
  180.     /**
  181.      * This enables template security. When enabled, many things are restricted
  182.      * in the templates that normally would go unchecked. This is useful when
  183.      * untrusted parties are editing templates and you want a reasonable level
  184.      * of security. (no direct execution of PHP in templates for example)
  185.      *
  186.      * @var boolean
  187.      */
  188.     var $security       =   false;
  189.     /**
  190.      * This is the list of template directories that are considered secure. This
  191.      * is used only if {@link $security} is enabled. One directory per array
  192.      * element.  {@link $template_dir} is in this list implicitly.
  193.      *
  194.      * @var array
  195.      */
  196.     var $secure_dir     =   array();
  197.     /**
  198.      * These are the security settings for Smarty. They are used only when
  199.      * {@link $security} is enabled.
  200.      *
  201.      * @var array
  202.      */
  203.     var $security_settings  = array(
  204.                                     'PHP_HANDLING'    => false,
  205.                                     'IF_FUNCS'        => array('array', 'list',
  206.                                                                'isset', 'empty',
  207.                                                                'count', 'sizeof',
  208.                                                                'in_array', 'is_array',
  209.                                                                'true','false'),
  210.                                     'INCLUDE_ANY'     => false,
  211.                                     'PHP_TAGS'        => false,
  212.                                     'MODIFIER_FUNCS'  => array('count'),
  213.                                     'ALLOW_CONSTANTS'  => false
  214.                                    );
  215.     /**
  216.      * This is an array of directories where trusted php scripts reside.
  217.      * {@link $security} is disabled during their inclusion/execution.
  218.      *
  219.      * @var array
  220.      */
  221.     var $trusted_dir        = array();
  222.     /**
  223.      * The left delimiter used for the template tags.
  224.      *
  225.      * @var string
  226.      */
  227.     var $left_delimiter  =  '{';
  228.     /**
  229.      * The right delimiter used for the template tags.
  230.      *
  231.      * @var string
  232.      */
  233.     var $right_delimiter =  '}';
  234.     /**
  235.      * The order in which request variables are registered, similar to
  236.      * variables_order in php.ini E = Environment, G = GET, P = POST,
  237.      * C = Cookies, S = Server
  238.      *
  239.      * @var string
  240.      */
  241.     var $request_vars_order    = 'EGPCS';
  242.     /**
  243.      * Indicates wether $HTTP_*_VARS[] (request_use_auto_globals=false)
  244.      * are uses as request-vars or $_*[]-vars. note: if
  245.      * request_use_auto_globals is true, then $request_vars_order has
  246.      * no effect, but the php-ini-value "gpc_order"
  247.      *
  248.      * @var boolean
  249.      */
  250.     var $request_use_auto_globals      = true;
  251.     /**
  252.      * Set this if you want different sets of compiled files for the same
  253.      * templates. This is useful for things like different languages.
  254.      * Instead of creating separate sets of templates per language, you
  255.      * set different compile_ids like 'en' and 'de'.
  256.      *
  257.      * @var string
  258.      */
  259.     var $compile_id            = null;
  260.     /**
  261.      * This tells Smarty whether or not to use sub dirs in the cache/ and
  262.      * templates_c/ directories. sub directories better organized, but
  263.      * may not work well with PHP safe mode enabled.
  264.      *
  265.      * @var boolean
  266.      *
  267.      */
  268.     var $use_sub_dirs          = false;
  269.     /**
  270.      * This is a list of the modifiers to apply to all template variables.
  271.      * Put each modifier in a separate array element in the order you want
  272.      * them applied. example: <code>array('escape:"htmlall"');</code>
  273.      *
  274.      * @var array
  275.      */
  276.     var $default_modifiers        = array();
  277.     /**
  278.      * This is the resource type to be used when not specified
  279.      * at the beginning of the resource path. examples:
  280.      * $smarty->display('file:index.tpl');
  281.      * $smarty->display('db:index.tpl');
  282.      * $smarty->display('index.tpl'); // will use default resource type
  283.      * {include file="file:index.tpl"}
  284.      * {include file="db:index.tpl"}
  285.      * {include file="index.tpl"} {* will use default resource type *}
  286.      *
  287.      * @var array
  288.      */
  289.     var $default_resource_type    = 'file';
  290.     /**
  291.      * The function used for cache file handling. If not set, built-in caching is used.
  292.      *
  293.      * @var null|string function name
  294.      */
  295.     var $cache_handler_func   = null;
  296.     /**
  297.      * This indicates which filters are automatically loaded into Smarty.
  298.      *
  299.      * @var array array of filter names
  300.      */
  301.     var $autoload_filters = array();
  302.     /**#@+
  303.      * @var boolean
  304.      */
  305.     /**
  306.      * This tells if config file vars of the same name overwrite each other or not.
  307.      * if disabled, same name variables are accumulated in an array.
  308.      */
  309.     var $config_overwrite = true;
  310.     /**
  311.      * This tells whether or not to automatically booleanize config file variables.
  312.      * If enabled, then the strings "on", "true", and "yes" are treated as boolean
  313.      * true, and "off", "false" and "no" are treated as boolean false.
  314.      */
  315.     var $config_booleanize = true;
  316.     /**
  317.      * This tells whether hidden sections [.foobar] are readable from the
  318.      * tempalates or not. Normally you would never allow this since that is
  319.      * the point behind hidden sections: the application can access them, but
  320.      * the templates cannot.
  321.      */
  322.     var $config_read_hidden = false;
  323.     /**
  324.      * This tells whether or not automatically fix newlines in config files.
  325.      * It basically converts r (mac) or rn (dos) to n
  326.      */
  327.     var $config_fix_newlines = true;
  328.     /**#@-*/
  329.     /**
  330.      * If a template cannot be found, this PHP function will be executed.
  331.      * Useful for creating templates on-the-fly or other special action.
  332.      *
  333.      * @var string function name
  334.      */
  335.     var $default_template_handler_func = '';
  336.     /**
  337.      * The file that contains the compiler class. This can a full
  338.      * pathname, or relative to the php_include path.
  339.      *
  340.      * @var string
  341.      */
  342.     var $compiler_file        =    'Smarty_Compiler.class.php';
  343.     /**
  344.      * The class used for compiling templates.
  345.      *
  346.      * @var string
  347.      */
  348.     var $compiler_class        =   'Smarty_Compiler';
  349.     /**
  350.      * The class used to load config vars.
  351.      *
  352.      * @var string
  353.      */
  354.     var $config_class          =   'Config_File';
  355. /**#@+
  356.  * END Smarty Configuration Section
  357.  * There should be no need to touch anything below this line.
  358.  * @access private
  359.  */
  360.     /**
  361.      * where assigned template vars are kept
  362.      *
  363.      * @var array
  364.      */
  365.     var $_tpl_vars             = array();
  366.     /**
  367.      * stores run-time $smarty.* vars
  368.      *
  369.      * @var null|array
  370.      */
  371.     var $_smarty_vars          = null;
  372.     /**
  373.      * keeps track of sections
  374.      *
  375.      * @var array
  376.      */
  377.     var $_sections             = array();
  378.     /**
  379.      * keeps track of foreach blocks
  380.      *
  381.      * @var array
  382.      */
  383.     var $_foreach              = array();
  384.     /**
  385.      * keeps track of tag hierarchy
  386.      *
  387.      * @var array
  388.      */
  389.     var $_tag_stack            = array();
  390.     /**
  391.      * configuration object
  392.      *
  393.      * @var Config_file
  394.      */
  395.     var $_conf_obj             = null;
  396.     /**
  397.      * loaded configuration settings
  398.      *
  399.      * @var array
  400.      */
  401.     var $_config               = array(array('vars'  => array(), 'files' => array()));
  402.     /**
  403.      * md5 checksum of the string 'Smarty'
  404.      *
  405.      * @var string
  406.      */
  407.     var $_smarty_md5           = 'f8d698aea36fcbead2b9d5359ffca76f';
  408.     /**
  409.      * Smarty version number
  410.      *
  411.      * @var string
  412.      */
  413.     var $_version              = '2.6.6';
  414.     /**
  415.      * current template inclusion depth
  416.      *
  417.      * @var integer
  418.      */
  419.     var $_inclusion_depth      = 0;
  420.     /**
  421.      * for different compiled templates
  422.      *
  423.      * @var string
  424.      */
  425.     var $_compile_id           = null;
  426.     /**
  427.      * text in URL to enable debug mode
  428.      *
  429.      * @var string
  430.      */
  431.     var $_smarty_debug_id      = 'SMARTY_DEBUG';
  432.     /**
  433.      * debugging information for debug console
  434.      *
  435.      * @var array
  436.      */
  437.     var $_smarty_debug_info    = array();
  438.     /**
  439.      * info that makes up a cache file
  440.      *
  441.      * @var array
  442.      */
  443.     var $_cache_info           = array();
  444.     /**
  445.      * default file permissions
  446.      *
  447.      * @var integer
  448.      */
  449.     var $_file_perms           = 0644;
  450.     /**
  451.      * default dir permissions
  452.      *
  453.      * @var integer
  454.      */
  455.     var $_dir_perms               = 0771;
  456.     /**
  457.      * registered objects
  458.      *
  459.      * @var array
  460.      */
  461.     var $_reg_objects           = array();
  462.     /**
  463.      * table keeping track of plugins
  464.      *
  465.      * @var array
  466.      */
  467.     var $_plugins              = array(
  468.                                        'modifier'      => array(),
  469.                                        'function'      => array(),
  470.                                        'block'         => array(),
  471.                                        'compiler'      => array(),
  472.                                        'prefilter'     => array(),
  473.                                        'postfilter'    => array(),
  474.                                        'outputfilter'  => array(),
  475.                                        'resource'      => array(),
  476.                                        'insert'        => array());
  477.     /**
  478.      * cache serials
  479.      *
  480.      * @var array
  481.      */
  482.     var $_cache_serials = array();
  483.     /**
  484.      * name of optional cache include file
  485.      *
  486.      * @var string
  487.      */
  488.     var $_cache_include = null;
  489.     /**
  490.      * indicate if the current code is used in a compiled
  491.      * include
  492.      *
  493.      * @var string
  494.      */
  495.     var $_cache_including = false;
  496.     /**#@-*/
  497.     /**
  498.      * The class constructor.
  499.      */
  500.     function Smarty()
  501.     {
  502.       $this->assign('SCRIPT_NAME', isset($_SERVER['SCRIPT_NAME']) ? $_SERVER['SCRIPT_NAME']
  503.                     : @$GLOBALS['HTTP_SERVER_VARS']['SCRIPT_NAME']);
  504.     }
  505.     /**
  506.      * assigns values to template variables
  507.      *
  508.      * @param array|string $tpl_var the template variable name(s)
  509.      * @param mixed $value the value to assign
  510.      */
  511.     function assign($tpl_var, $value = null)
  512.     {
  513.         if (is_array($tpl_var)){
  514.             foreach ($tpl_var as $key => $val) {
  515.                 if ($key != '') {
  516.                     $this->_tpl_vars[$key] = $val;
  517.                 }
  518.             }
  519.         } else {
  520.             if ($tpl_var != '')
  521.                 $this->_tpl_vars[$tpl_var] = $value;
  522.         }
  523.     }
  524.     /**
  525.      * assigns values to template variables by reference
  526.      *
  527.      * @param string $tpl_var the template variable name
  528.      * @param mixed $value the referenced value to assign
  529.      */
  530.     function assign_by_ref($tpl_var, &$value)
  531.     {
  532.         if ($tpl_var != '')
  533.             $this->_tpl_vars[$tpl_var] = &$value;
  534.     }
  535.     /**
  536.      * appends values to template variables
  537.      *
  538.      * @param array|string $tpl_var the template variable name(s)
  539.      * @param mixed $value the value to append
  540.      */
  541.     function append($tpl_var, $value=null, $merge=false)
  542.     {
  543.         if (is_array($tpl_var)) {
  544.             // $tpl_var is an array, ignore $value
  545.             foreach ($tpl_var as $_key => $_val) {
  546.                 if ($_key != '') {
  547.                     if(!@is_array($this->_tpl_vars[$_key])) {
  548.                         settype($this->_tpl_vars[$_key],'array');
  549.                     }
  550.                     if($merge && is_array($_val)) {
  551.                         foreach($_val as $_mkey => $_mval) {
  552.                             $this->_tpl_vars[$_key][$_mkey] = $_mval;
  553.                         }
  554.                     } else {
  555.                         $this->_tpl_vars[$_key][] = $_val;
  556.                     }
  557.                 }
  558.             }
  559.         } else {
  560.             if ($tpl_var != '' && isset($value)) {
  561.                 if(!@is_array($this->_tpl_vars[$tpl_var])) {
  562.                     settype($this->_tpl_vars[$tpl_var],'array');
  563.                 }
  564.                 if($merge && is_array($value)) {
  565.                     foreach($value as $_mkey => $_mval) {
  566.                         $this->_tpl_vars[$tpl_var][$_mkey] = $_mval;
  567.                     }
  568.                 } else {
  569.                     $this->_tpl_vars[$tpl_var][] = $value;
  570.                 }
  571.             }
  572.         }
  573.     }
  574.     /**
  575.      * appends values to template variables by reference
  576.      *
  577.      * @param string $tpl_var the template variable name
  578.      * @param mixed $value the referenced value to append
  579.      */
  580.     function append_by_ref($tpl_var, &$value, $merge=false)
  581.     {
  582.         if ($tpl_var != '' && isset($value)) {
  583.             if(!@is_array($this->_tpl_vars[$tpl_var])) {
  584.              settype($this->_tpl_vars[$tpl_var],'array');
  585.             }
  586.             if ($merge && is_array($value)) {
  587.                 foreach($value as $_key => $_val) {
  588.                     $this->_tpl_vars[$tpl_var][$_key] = &$value[$_key];
  589.                 }
  590.             } else {
  591.                 $this->_tpl_vars[$tpl_var][] = &$value;
  592.             }
  593.         }
  594.     }
  595.     /**
  596.      * clear the given assigned template variable.
  597.      *
  598.      * @param string $tpl_var the template variable to clear
  599.      */
  600.     function clear_assign($tpl_var)
  601.     {
  602.         if (is_array($tpl_var))
  603.             foreach ($tpl_var as $curr_var)
  604.                 unset($this->_tpl_vars[$curr_var]);
  605.         else
  606.             unset($this->_tpl_vars[$tpl_var]);
  607.     }
  608.     /**
  609.      * Registers custom function to be used in templates
  610.      *
  611.      * @param string $function the name of the template function
  612.      * @param string $function_impl the name of the PHP function to register
  613.      */
  614.     function register_function($function, $function_impl, $cacheable=true, $cache_attrs=null)
  615.     {
  616.         $this->_plugins['function'][$function] =
  617.             array($function_impl, null, null, false, $cacheable, $cache_attrs);
  618.     }
  619.     /**
  620.      * Unregisters custom function
  621.      *
  622.      * @param string $function name of template function
  623.      */
  624.     function unregister_function($function)
  625.     {
  626.         unset($this->_plugins['function'][$function]);
  627.     }
  628.     /**
  629.      * Registers object to be used in templates
  630.      *
  631.      * @param string $object name of template object
  632.      * @param object &$object_impl the referenced PHP object to register
  633.      * @param null|array $allowed list of allowed methods (empty = all)
  634.      * @param boolean $smarty_args smarty argument format, else traditional
  635.      * @param null|array $block_functs list of methods that are block format
  636.      */
  637.     function register_object($object, &$object_impl, $allowed = array(), $smarty_args = true, $block_methods = array())
  638.     {
  639.         settype($allowed, 'array');
  640.         settype($smarty_args, 'boolean');
  641.         $this->_reg_objects[$object] =
  642.             array(&$object_impl, $allowed, $smarty_args, $block_methods);
  643.     }
  644.     /**
  645.      * Unregisters object
  646.      *
  647.      * @param string $object name of template object
  648.      */
  649.     function unregister_object($object)
  650.     {
  651.         unset($this->_reg_objects[$object]);
  652.     }
  653.     /**
  654.      * Registers block function to be used in templates
  655.      *
  656.      * @param string $block name of template block
  657.      * @param string $block_impl PHP function to register
  658.      */
  659.     function register_block($block, $block_impl, $cacheable=true, $cache_attrs=null)
  660.     {
  661.         $this->_plugins['block'][$block] =
  662.             array($block_impl, null, null, false, $cacheable, $cache_attrs);
  663.     }
  664.     /**
  665.      * Unregisters block function
  666.      *
  667.      * @param string $block name of template function
  668.      */
  669.     function unregister_block($block)
  670.     {
  671.         unset($this->_plugins['block'][$block]);
  672.     }
  673.     /**
  674.      * Registers compiler function
  675.      *
  676.      * @param string $function name of template function
  677.      * @param string $function_impl name of PHP function to register
  678.      */
  679.     function register_compiler_function($function, $function_impl, $cacheable=true)
  680.     {
  681.         $this->_plugins['compiler'][$function] =
  682.             array($function_impl, null, null, false, $cacheable);
  683.     }
  684.     /**
  685.      * Unregisters compiler function
  686.      *
  687.      * @param string $function name of template function
  688.      */
  689.     function unregister_compiler_function($function)
  690.     {
  691.         unset($this->_plugins['compiler'][$function]);
  692.     }
  693.     /**
  694.      * Registers modifier to be used in templates
  695.      *
  696.      * @param string $modifier name of template modifier
  697.      * @param string $modifier_impl name of PHP function to register
  698.      */
  699.     function register_modifier($modifier, $modifier_impl)
  700.     {
  701.         $this->_plugins['modifier'][$modifier] =
  702.             array($modifier_impl, null, null, false);
  703.     }
  704.     /**
  705.      * Unregisters modifier
  706.      *
  707.      * @param string $modifier name of template modifier
  708.      */
  709.     function unregister_modifier($modifier)
  710.     {
  711.         unset($this->_plugins['modifier'][$modifier]);
  712.     }
  713.     /**
  714.      * Registers a resource to fetch a template
  715.      *
  716.      * @param string $type name of resource
  717.      * @param array $functions array of functions to handle resource
  718.      */
  719.     function register_resource($type, $functions)
  720.     {
  721.         if (count($functions)==4) {
  722.             $this->_plugins['resource'][$type] =
  723.                 array($functions, false);
  724.         } elseif (count($functions)==5) {
  725.             $this->_plugins['resource'][$type] =
  726.                 array(array(array(&$functions[0], $functions[1])
  727.                             ,array(&$functions[0], $functions[2])
  728.                             ,array(&$functions[0], $functions[3])
  729.                             ,array(&$functions[0], $functions[4]))
  730.                       ,false);
  731.         } else {
  732.             $this->trigger_error("malformed function-list for '$type' in register_resource");
  733.         }
  734.     }
  735.     /**
  736.      * Unregisters a resource
  737.      *
  738.      * @param string $type name of resource
  739.      */
  740.     function unregister_resource($type)
  741.     {
  742.         unset($this->_plugins['resource'][$type]);
  743.     }
  744.     /**
  745.      * Registers a prefilter function to apply
  746.      * to a template before compiling
  747.      *
  748.      * @param string $function name of PHP function to register
  749.      */
  750.     function register_prefilter($function)
  751.     {
  752.     $_name = (is_array($function)) ? $function[1] : $function;
  753.         $this->_plugins['prefilter'][$_name]
  754.             = array($function, null, null, false);
  755.     }
  756.     /**
  757.      * Unregisters a prefilter function
  758.      *
  759.      * @param string $function name of PHP function
  760.      */
  761.     function unregister_prefilter($function)
  762.     {
  763.         unset($this->_plugins['prefilter'][$function]);
  764.     }
  765.     /**
  766.      * Registers a postfilter function to apply
  767.      * to a compiled template after compilation
  768.      *
  769.      * @param string $function name of PHP function to register
  770.      */
  771.     function register_postfilter($function)
  772.     {
  773.     $_name = (is_array($function)) ? $function[1] : $function;
  774.         $this->_plugins['postfilter'][$_name]
  775.             = array($function, null, null, false);
  776.     }
  777.     /**
  778.      * Unregisters a postfilter function
  779.      *
  780.      * @param string $function name of PHP function
  781.      */
  782.     function unregister_postfilter($function)
  783.     {
  784.         unset($this->_plugins['postfilter'][$function]);
  785.     }
  786.     /**
  787.      * Registers an output filter function to apply
  788.      * to a template output
  789.      *
  790.      * @param string $function name of PHP function
  791.      */
  792.     function register_outputfilter($function)
  793.     {
  794.     $_name = (is_array($function)) ? $function[1] : $function;
  795.         $this->_plugins['outputfilter'][$_name]
  796.             = array($function, null, null, false);
  797.     }
  798.     /**
  799.      * Unregisters an outputfilter function
  800.      *
  801.      * @param string $function name of PHP function
  802.      */
  803.     function unregister_outputfilter($function)
  804.     {
  805.         unset($this->_plugins['outputfilter'][$function]);
  806.     }
  807.     /**
  808.      * load a filter of specified type and name
  809.      *
  810.      * @param string $type filter type
  811.      * @param string $name filter name
  812.      */
  813.     function load_filter($type, $name)
  814.     {
  815.         switch ($type) {
  816.             case 'output':
  817.                 $_params = array('plugins' => array(array($type . 'filter', $name, null, null, false)));
  818.                 require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
  819.                 smarty_core_load_plugins($_params, $this);
  820.                 break;
  821.             case 'pre':
  822.             case 'post':
  823.                 if (!isset($this->_plugins[$type . 'filter'][$name]))
  824.                     $this->_plugins[$type . 'filter'][$name] = false;
  825.                 break;
  826.         }
  827.     }
  828.     /**
  829.      * clear cached content for the given template and cache id
  830.      *
  831.      * @param string $tpl_file name of template file
  832.      * @param string $cache_id name of cache_id
  833.      * @param string $compile_id name of compile_id
  834.      * @param string $exp_time expiration time
  835.      * @return boolean
  836.      */
  837.     function clear_cache($tpl_file = null, $cache_id = null, $compile_id = null, $exp_time = null)
  838.     {
  839.         if (!isset($compile_id))
  840.             $compile_id = $this->compile_id;
  841.         if (!isset($tpl_file))
  842.             $compile_id = null;
  843.         $_auto_id = $this->_get_auto_id($cache_id, $compile_id);
  844.         if (!empty($this->cache_handler_func)) {
  845.             return call_user_func_array($this->cache_handler_func,
  846.                                   array('clear', &$this, &$dummy, $tpl_file, $cache_id, $compile_id, $exp_time));
  847.         } else {
  848.             $_params = array('auto_base' => $this->cache_dir,
  849.                             'auto_source' => $tpl_file,
  850.                             'auto_id' => $_auto_id,
  851.                             'exp_time' => $exp_time);
  852.             require_once(SMARTY_CORE_DIR . 'core.rm_auto.php');
  853.             return smarty_core_rm_auto($_params, $this);
  854.         }
  855.     }
  856.     /**
  857.      * clear the entire contents of cache (all templates)
  858.      *
  859.      * @param string $exp_time expire time
  860.      * @return boolean results of {@link smarty_core_rm_auto()}
  861.      */
  862.     function clear_all_cache($exp_time = null)
  863.     {
  864.         return $this->clear_cache(null, null, null, $exp_time);
  865.     }
  866.     /**
  867.      * test to see if valid cache exists for this template
  868.      *
  869.      * @param string $tpl_file name of template file
  870.      * @param string $cache_id
  871.      * @param string $compile_id
  872.      * @return string|false results of {@link _read_cache_file()}
  873.      */
  874.     function is_cached($tpl_file, $cache_id = null, $compile_id = null)
  875.     {
  876.         if (!$this->caching)
  877.             return false;
  878.         if (!isset($compile_id))
  879.             $compile_id = $this->compile_id;
  880.         $_params = array(
  881.             'tpl_file' => $tpl_file,
  882.             'cache_id' => $cache_id,
  883.             'compile_id' => $compile_id
  884.         );
  885.         require_once(SMARTY_CORE_DIR . 'core.read_cache_file.php');
  886.         return smarty_core_read_cache_file($_params, $this);
  887.     }
  888.     /**
  889.      * clear all the assigned template variables.
  890.      *
  891.      */
  892.     function clear_all_assign()
  893.     {
  894.         $this->_tpl_vars = array();
  895.     }
  896.     /**
  897.      * clears compiled version of specified template resource,
  898.      * or all compiled template files if one is not specified.
  899.      * This function is for advanced use only, not normally needed.
  900.      *
  901.      * @param string $tpl_file
  902.      * @param string $compile_id
  903.      * @param string $exp_time
  904.      * @return boolean results of {@link smarty_core_rm_auto()}
  905.      */
  906.     function clear_compiled_tpl($tpl_file = null, $compile_id = null, $exp_time = null)
  907.     {
  908.         if (!isset($compile_id)) {
  909.             $compile_id = $this->compile_id;
  910.         }
  911.         $_params = array('auto_base' => $this->compile_dir,
  912.                         'auto_source' => $tpl_file,
  913.                         'auto_id' => $compile_id,
  914.                         'exp_time' => $exp_time,
  915.                         'extensions' => array('.inc', '.php'));
  916.         require_once(SMARTY_CORE_DIR . 'core.rm_auto.php');
  917.         return smarty_core_rm_auto($_params, $this);
  918.     }
  919.     /**
  920.      * Checks whether requested template exists.
  921.      *
  922.      * @param string $tpl_file
  923.      * @return boolean
  924.      */
  925.     function template_exists($tpl_file)
  926.     {
  927.         $_params = array('resource_name' => $tpl_file, 'quiet'=>true, 'get_source'=>false);
  928.         return $this->_fetch_resource_info($_params);
  929.     }
  930.     /**
  931.      * Returns an array containing template variables
  932.      *
  933.      * @param string $name
  934.      * @param string $type
  935.      * @return array
  936.      */
  937.     function &get_template_vars($name=null)
  938.     {
  939.         if(!isset($name)) {
  940.             return $this->_tpl_vars;
  941.         }
  942.         if(isset($this->_tpl_vars[$name])) {
  943.             return $this->_tpl_vars[$name];
  944.         }
  945.     }
  946.     /**
  947.      * Returns an array containing config variables
  948.      *
  949.      * @param string $name
  950.      * @param string $type
  951.      * @return array
  952.      */
  953.     function &get_config_vars($name=null)
  954.     {
  955.         if(!isset($name) && is_array($this->_config[0])) {
  956.             return $this->_config[0]['vars'];
  957.         } else if(isset($this->_config[0]['vars'][$name])) {
  958.             return $this->_config[0]['vars'][$name];
  959.         }
  960.     }
  961.     /**
  962.      * trigger Smarty error
  963.      *
  964.      * @param string $error_msg
  965.      * @param integer $error_type
  966.      */
  967.     function trigger_error($error_msg, $error_type = E_USER_WARNING)
  968.     {
  969.         trigger_error("Smarty error: $error_msg", $error_type);
  970.     }
  971.     /**
  972.      * executes & displays the template results
  973.      *
  974.      * @param string $resource_name
  975.      * @param string $cache_id
  976.      * @param string $compile_id
  977.      */
  978.     function display($resource_name, $cache_id = null, $compile_id = null)
  979.     {
  980.         $this->fetch($resource_name, $cache_id, $compile_id, true);
  981.     }
  982.     /**
  983.      * executes & returns or displays the template results
  984.      *
  985.      * @param string $resource_name
  986.      * @param string $cache_id
  987.      * @param string $compile_id
  988.      * @param boolean $display
  989.      */
  990.     function fetch($resource_name, $cache_id = null, $compile_id = null, $display = false)
  991.     {
  992.         static $_cache_info = array();
  993.         
  994.         $_smarty_old_error_level = $this->debugging ? error_reporting() : error_reporting(isset($this->error_reporting)
  995.                ? $this->error_reporting : error_reporting() & ~E_NOTICE);
  996.         if (!$this->debugging && $this->debugging_ctrl == 'URL') {
  997.             $_query_string = $this->request_use_auto_globals ? $_SERVER['QUERY_STRING'] : $GLOBALS['HTTP_SERVER_VARS']['QUERY_STRING'];
  998.             if (@strstr($_query_string, $this->_smarty_debug_id)) {
  999.                 if (@strstr($_query_string, $this->_smarty_debug_id . '=on')) {
  1000.                     // enable debugging for this browser session
  1001.                     @setcookie('SMARTY_DEBUG', true);
  1002.                     $this->debugging = true;
  1003.                 } elseif (@strstr($_query_string, $this->_smarty_debug_id . '=off')) {
  1004.                     // disable debugging for this browser session
  1005.                     @setcookie('SMARTY_DEBUG', false);
  1006.                     $this->debugging = false;
  1007.                 } else {
  1008.                     // enable debugging for this page
  1009.                     $this->debugging = true;
  1010.                 }
  1011.             } else {
  1012.                 $_cookie_var = $this->request_use_auto_globals ? $_COOKIE['SMARTY_DEBUG'] : $GLOBALS['HTTP_COOKIE_VARS']['SMARTY_DEBUG'];
  1013.                 $this->debugging = $_cookie_var ? true : false;
  1014.             }
  1015.         }
  1016.         if ($this->debugging) {
  1017.             // capture time for debugging info
  1018.             $_params = array();
  1019.             require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');
  1020.             $_debug_start_time = smarty_core_get_microtime($_params, $this);
  1021.             $this->_smarty_debug_info[] = array('type'      => 'template',
  1022.                                                 'filename'  => $resource_name,
  1023.                                                 'depth'     => 0);
  1024.             $_included_tpls_idx = count($this->_smarty_debug_info) - 1;
  1025.         }
  1026.         if (!isset($compile_id)) {
  1027.             $compile_id = $this->compile_id;
  1028.         }
  1029.         $this->_compile_id = $compile_id;
  1030.         $this->_inclusion_depth = 0;
  1031.         if ($this->caching) {
  1032.             // save old cache_info, initialize cache_info
  1033.             array_push($_cache_info, $this->_cache_info);
  1034.             $this->_cache_info = array();
  1035.             $_params = array(
  1036.                 'tpl_file' => $resource_name,
  1037.                 'cache_id' => $cache_id,
  1038.                 'compile_id' => $compile_id,
  1039.                 'results' => null
  1040.             );
  1041.             require_once(SMARTY_CORE_DIR . 'core.read_cache_file.php');
  1042.             if (smarty_core_read_cache_file($_params, $this)) {
  1043.                 $_smarty_results = $_params['results'];
  1044.                 if (!empty($this->_cache_info['insert_tags'])) {
  1045.                     $_params = array('plugins' => $this->_cache_info['insert_tags']);
  1046.                     require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
  1047.                     smarty_core_load_plugins($_params, $this);
  1048.                     $_params = array('results' => $_smarty_results);
  1049.                     require_once(SMARTY_CORE_DIR . 'core.process_cached_inserts.php');
  1050.                     $_smarty_results = smarty_core_process_cached_inserts($_params, $this);
  1051.                 }
  1052.                 if (!empty($this->_cache_info['cache_serials'])) {
  1053.                     $_params = array('results' => $_smarty_results);
  1054.                     require_once(SMARTY_CORE_DIR . 'core.process_compiled_include.php');
  1055.                     $_smarty_results = smarty_core_process_compiled_include($_params, $this);
  1056.                 }
  1057.                 if ($display) {
  1058.                     if ($this->debugging)
  1059.                     {
  1060.                         // capture time for debugging info
  1061.                         $_params = array();
  1062.                         require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');
  1063.                         $this->_smarty_debug_info[$_included_tpls_idx]['exec_time'] = smarty_core_get_microtime($_params, $this) - $_debug_start_time;
  1064.                         require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');
  1065.                         $_smarty_results .= smarty_core_display_debug_console($_params, $this);
  1066.                     }
  1067.                     if ($this->cache_modified_check) {
  1068.                         $_server_vars = ($this->request_use_auto_globals) ? $_SERVER : $GLOBALS['HTTP_SERVER_VARS'];
  1069.                         $_last_modified_date = @substr($_server_vars['HTTP_IF_MODIFIED_SINCE'], 0, strpos($_server_vars['HTTP_IF_MODIFIED_SINCE'], 'GMT') + 3);
  1070.                         $_gmt_mtime = gmdate('D, d M Y H:i:s', $this->_cache_info['timestamp']).' GMT';
  1071.                         if (@count($this->_cache_info['insert_tags']) == 0
  1072.                             && !$this->_cache_serials
  1073.                             && $_gmt_mtime == $_last_modified_date) {
  1074.                             if (php_sapi_name()=='cgi')
  1075.                                 header('Status: 304 Not Modified');
  1076.                             else
  1077.                                 header('HTTP/1.1 304 Not Modified');
  1078.                         } else {
  1079.                             header('Last-Modified: '.$_gmt_mtime);
  1080.                             echo $_smarty_results;
  1081.                         }
  1082.                     } else {
  1083.                             echo $_smarty_results;
  1084.                     }
  1085.                     error_reporting($_smarty_old_error_level);
  1086.                     // restore initial cache_info
  1087.                     $this->_cache_info = array_pop($_cache_info);
  1088.                     return true;
  1089.                 } else {
  1090.                     error_reporting($_smarty_old_error_level);
  1091.                     // restore initial cache_info
  1092.                     $this->_cache_info = array_pop($_cache_info);
  1093.                     return $_smarty_results;
  1094.                 }
  1095.             } else {
  1096.                 $this->_cache_info['template'][$resource_name] = true;
  1097.                 if ($this->cache_modified_check && $display) {
  1098.                     header('Last-Modified: '.gmdate('D, d M Y H:i:s', time()).' GMT');
  1099.                 }
  1100.             }
  1101.         }
  1102.         // load filters that are marked as autoload
  1103.         if (count($this->autoload_filters)) {
  1104.             foreach ($this->autoload_filters as $_filter_type => $_filters) {
  1105.                 foreach ($_filters as $_filter) {
  1106.                     $this->load_filter($_filter_type, $_filter);
  1107.                 }
  1108.             }
  1109.         }
  1110.         $_smarty_compile_path = $this->_get_compile_path($resource_name);
  1111.         // if we just need to display the results, don't perform output
  1112.         // buffering - for speed
  1113.         $_cache_including = $this->_cache_including;
  1114.         $this->_cache_including = false;
  1115.         if ($display && !$this->caching && count($this->_plugins['outputfilter']) == 0) {
  1116.             if ($this->_is_compiled($resource_name, $_smarty_compile_path)
  1117.                     || $this->_compile_resource($resource_name, $_smarty_compile_path))
  1118.             {
  1119.                 include($_smarty_compile_path);
  1120.             }
  1121.         } else {
  1122.             ob_start();
  1123.             if ($this->_is_compiled($resource_name, $_smarty_compile_path)
  1124.                     || $this->_compile_resource($resource_name, $_smarty_compile_path))
  1125.             {
  1126.                 include($_smarty_compile_path);
  1127.             }
  1128.             $_smarty_results = ob_get_contents();
  1129.             ob_end_clean();
  1130.             foreach ((array)$this->_plugins['outputfilter'] as $_output_filter) {
  1131.                 $_smarty_results = call_user_func_array($_output_filter[0], array($_smarty_results, &$this));
  1132.             }
  1133.         }
  1134.         if ($this->caching) {
  1135.             $_params = array('tpl_file' => $resource_name,
  1136.                         'cache_id' => $cache_id,
  1137.                         'compile_id' => $compile_id,
  1138.                         'results' => $_smarty_results);
  1139.             require_once(SMARTY_CORE_DIR . 'core.write_cache_file.php');
  1140.             smarty_core_write_cache_file($_params, $this);
  1141.             require_once(SMARTY_CORE_DIR . 'core.process_cached_inserts.php');
  1142.             $_smarty_results = smarty_core_process_cached_inserts($_params, $this);
  1143.             if ($this->_cache_serials) {
  1144.                 // strip nocache-tags from output
  1145.                 $_smarty_results = preg_replace('!({/?nocache:[0-9a-f]{32}#d+})!s'
  1146.                                                 ,''
  1147.                                                 ,$_smarty_results);
  1148.             }
  1149.             // restore initial cache_info
  1150.             $this->_cache_info = array_pop($_cache_info);
  1151.         }
  1152.         $this->_cache_including = $_cache_including;
  1153.         if ($display) {
  1154.             if (isset($_smarty_results)) { echo $_smarty_results; }
  1155.             if ($this->debugging) {
  1156.                 // capture time for debugging info
  1157.                 $_params = array();
  1158.                 require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');
  1159.                 $this->_smarty_debug_info[$_included_tpls_idx]['exec_time'] = (smarty_core_get_microtime($_params, $this) - $_debug_start_time);
  1160.                 require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');
  1161.                 echo smarty_core_display_debug_console($_params, $this);
  1162.             }
  1163.             error_reporting($_smarty_old_error_level);
  1164.             return;
  1165.         } else {
  1166.             error_reporting($_smarty_old_error_level);
  1167.             if (isset($_smarty_results)) { return $_smarty_results; }
  1168.         }
  1169.     }
  1170.     /**
  1171.      * load configuration values
  1172.      *
  1173.      * @param string $file
  1174.      * @param string $section
  1175.      * @param string $scope
  1176.      */
  1177.     function config_load($file, $section = null, $scope = 'global')
  1178.     {
  1179.         require_once($this->_get_plugin_filepath('function', 'config_load'));
  1180.         smarty_function_config_load(array('file' => $file, 'section' => $section, 'scope' => $scope), $this);
  1181.     }
  1182.     /**
  1183.      * return a reference to a registered object
  1184.      *
  1185.      * @param string $name
  1186.      * @return object
  1187.      */
  1188.     function &get_registered_object($name) {
  1189.         if (!isset($this->_reg_objects[$name]))
  1190.         $this->_trigger_fatal_error("'$name' is not a registered object");
  1191.         if (!is_object($this->_reg_objects[$name][0]))
  1192.         $this->_trigger_fatal_error("registered '$name' is not an object");
  1193.         return $this->_reg_objects[$name][0];
  1194.     }
  1195.     /**
  1196.      * clear configuration values
  1197.      *
  1198.      * @param string $var
  1199.      */
  1200.     function clear_config($var = null)
  1201.     {
  1202.         if(!isset($var)) {
  1203.             // clear all values
  1204.             $this->_config = array(array('vars'  => array(),
  1205.                                          'files' => array()));
  1206.         } else {
  1207.             unset($this->_config[0]['vars'][$var]);
  1208.         }
  1209.     }
  1210.     /**
  1211.      * get filepath of requested plugin
  1212.      *
  1213.      * @param string $type
  1214.      * @param string $name
  1215.      * @return string|false
  1216.      */
  1217.     function _get_plugin_filepath($type, $name)
  1218.     {
  1219.         $_params = array('type' => $type, 'name' => $name);
  1220.         require_once(SMARTY_CORE_DIR . 'core.assemble_plugin_filepath.php');
  1221.         return smarty_core_assemble_plugin_filepath($_params, $this);
  1222.     }
  1223.    /**
  1224.      * test if resource needs compiling
  1225.      *
  1226.      * @param string $resource_name
  1227.      * @param string $compile_path
  1228.      * @return boolean
  1229.      */
  1230.     function _is_compiled($resource_name, $compile_path)
  1231.     {
  1232.         if (!$this->force_compile && file_exists($compile_path)) {
  1233.             if (!$this->compile_check) {
  1234.                 // no need to check compiled file
  1235.                 return true;
  1236.             } else {
  1237.                 // get file source and timestamp
  1238.                 $_params = array('resource_name' => $resource_name, 'get_source'=>false);
  1239.                 if (!$this->_fetch_resource_info($_params)) {
  1240.                     return false;
  1241.                 }
  1242.                 if ($_params['resource_timestamp'] <= filemtime($compile_path)) {
  1243.                     // template not expired, no recompile
  1244.                     return true;
  1245.                 } else {
  1246.                     // compile template
  1247.                     return false;
  1248.                 }
  1249.             }
  1250.         } else {
  1251.             // compiled template does not exist, or forced compile
  1252.             return false;
  1253.         }
  1254.     }
  1255.    /**
  1256.      * compile the template
  1257.      *
  1258.      * @param string $resource_name
  1259.      * @param string $compile_path
  1260.      * @return boolean
  1261.      */
  1262.     function _compile_resource($resource_name, $compile_path)
  1263.     {
  1264.         $_params = array('resource_name' => $resource_name);
  1265.         if (!$this->_fetch_resource_info($_params)) {
  1266.             return false;
  1267.         }
  1268.         $_source_content = $_params['source_content'];
  1269.         $_cache_include    = substr($compile_path, 0, -4).'.inc';
  1270.         if ($this->_compile_source($resource_name, $_source_content, $_compiled_content, $_cache_include)) {
  1271.             // if a _cache_serial was set, we also have to write an include-file:
  1272.             if ($this->_cache_include_info) {
  1273.                 require_once(SMARTY_CORE_DIR . 'core.write_compiled_include.php');
  1274.                 smarty_core_write_compiled_include(array_merge($this->_cache_include_info, array('compiled_content'=>$_compiled_content, 'resource_name'=>$resource_name)),  $this);
  1275.             }
  1276.             $_params = array('compile_path'=>$compile_path, 'compiled_content' => $_compiled_content);
  1277.             require_once(SMARTY_CORE_DIR . 'core.write_compiled_resource.php');
  1278.             smarty_core_write_compiled_resource($_params, $this);
  1279.             return true;
  1280.         } else {
  1281.             return false;
  1282.         }
  1283.     }
  1284.    /**
  1285.      * compile the given source
  1286.      *
  1287.      * @param string $resource_name
  1288.      * @param string $source_content
  1289.      * @param string $compiled_content
  1290.      * @return boolean
  1291.      */
  1292.     function _compile_source($resource_name, &$source_content, &$compiled_content, $cache_include_path=null)
  1293.     {
  1294.         if (file_exists(SMARTY_DIR . $this->compiler_file)) {
  1295.             require_once(SMARTY_DIR . $this->compiler_file);
  1296.         } else {
  1297.             // use include_path
  1298.             require_once($this->compiler_file);
  1299.         }
  1300.         $smarty_compiler = new $this->compiler_class;
  1301.         $smarty_compiler->template_dir      = $this->template_dir;
  1302.         $smarty_compiler->compile_dir       = $this->compile_dir;
  1303.         $smarty_compiler->plugins_dir       = $this->plugins_dir;
  1304.         $smarty_compiler->config_dir        = $this->config_dir;
  1305.         $smarty_compiler->force_compile     = $this->force_compile;
  1306.         $smarty_compiler->caching           = $this->caching;
  1307.         $smarty_compiler->php_handling      = $this->php_handling;
  1308.         $smarty_compiler->left_delimiter    = $this->left_delimiter;
  1309.         $smarty_compiler->right_delimiter   = $this->right_delimiter;
  1310.         $smarty_compiler->_version          = $this->_version;
  1311.         $smarty_compiler->security          = $this->security;
  1312.         $smarty_compiler->secure_dir        = $this->secure_dir;
  1313.         $smarty_compiler->security_settings = $this->security_settings;
  1314.         $smarty_compiler->trusted_dir       = $this->trusted_dir;
  1315.         $smarty_compiler->use_sub_dirs      = $this->use_sub_dirs;
  1316.         $smarty_compiler->_reg_objects      = &$this->_reg_objects;
  1317.         $smarty_compiler->_plugins          = &$this->_plugins;
  1318.         $smarty_compiler->_tpl_vars         = &$this->_tpl_vars;
  1319.         $smarty_compiler->default_modifiers = $this->default_modifiers;
  1320.         $smarty_compiler->compile_id        = $this->_compile_id;
  1321.         $smarty_compiler->_config            = $this->_config;
  1322.         $smarty_compiler->request_use_auto_globals  = $this->request_use_auto_globals;
  1323.         if (isset($cache_include_path) && isset($this->_cache_serials[$cache_include_path])) {
  1324.             $smarty_compiler->_cache_serial = $this->_cache_serials[$cache_include_path];
  1325.         }
  1326.         $smarty_compiler->_cache_include = $cache_include_path;
  1327.         $_results = $smarty_compiler->_compile_file($resource_name, $source_content, $compiled_content);
  1328.         if ($smarty_compiler->_cache_serial) {
  1329.             $this->_cache_include_info = array(
  1330.                 'cache_serial'=>$smarty_compiler->_cache_serial
  1331.                 ,'plugins_code'=>$smarty_compiler->_plugins_code
  1332.                 ,'include_file_path' => $cache_include_path);
  1333.         } else {
  1334.             $this->_cache_include_info = null;
  1335.         }
  1336.         return $_results;
  1337.     }
  1338.     /**
  1339.      * Get the compile path for this resource
  1340.      *
  1341.      * @param string $resource_name
  1342.      * @return string results of {@link _get_auto_filename()}
  1343.      */
  1344.     function _get_compile_path($resource_name)
  1345.     {
  1346.         return $this->_get_auto_filename($this->compile_dir, $resource_name,
  1347.                                          $this->_compile_id) . '.php';
  1348.     }
  1349.     /**
  1350.      * fetch the template info. Gets timestamp, and source
  1351.      * if get_source is true
  1352.      *
  1353.      * sets $source_content to the source of the template, and
  1354.      * $resource_timestamp to its time stamp
  1355.      * @param string $resource_name
  1356.      * @param string $source_content
  1357.      * @param integer $resource_timestamp
  1358.      * @param boolean $get_source
  1359.      * @param boolean $quiet
  1360.      * @return boolean
  1361.      */
  1362.     function _fetch_resource_info(&$params)
  1363.     {
  1364.         if(!isset($params['get_source'])) { $params['get_source'] = true; }
  1365.         if(!isset($params['quiet'])) { $params['quiet'] = false; }
  1366.         $_return = false;
  1367.         $_params = array('resource_name' => $params['resource_name']) ;
  1368.         if (isset($params['resource_base_path']))
  1369.             $_params['resource_base_path'] = $params['resource_base_path'];
  1370.         else
  1371.             $_params['resource_base_path'] = $this->template_dir;
  1372.         if ($this->_parse_resource_name($_params)) {
  1373.             $_resource_type = $_params['resource_type'];
  1374.             $_resource_name = $_params['resource_name'];
  1375.             switch ($_resource_type) {
  1376.                 case 'file':
  1377.                     if ($params['get_source']) {
  1378.                         $params['source_content'] = $this->_read_file($_resource_name);
  1379.                     }
  1380.                     $params['resource_timestamp'] = filemtime($_resource_name);
  1381.                     $_return = is_file($_resource_name);
  1382.                     break;
  1383.                 default:
  1384.                     // call resource functions to fetch the template source and timestamp
  1385.                     if ($params['get_source']) {
  1386.                         $_source_return = isset($this->_plugins['resource'][$_resource_type]) &&
  1387.                             call_user_func_array($this->_plugins['resource'][$_resource_type][0][0],
  1388.                                                  array($_resource_name, &$params['source_content'], &$this));
  1389.                     } else {
  1390.                         $_source_return = true;
  1391.                     }
  1392.                     $_timestamp_return = isset($this->_plugins['resource'][$_resource_type]) &&
  1393.                         call_user_func_array($this->_plugins['resource'][$_resource_type][0][1],
  1394.                                              array($_resource_name, &$params['resource_timestamp'], &$this));
  1395.                     $_return = $_source_return && $_timestamp_return;
  1396.                     break;
  1397.             }
  1398.         }
  1399.         if (!$_return) {
  1400.             // see if we can get a template with the default template handler
  1401.             if (!empty($this->default_template_handler_func)) {
  1402.                 if (!is_callable($this->default_template_handler_func)) {
  1403.                     $this->trigger_error("default template handler function "$this->default_template_handler_func" doesn't exist.");
  1404.                 } else {
  1405.                     $_return = call_user_func_array(
  1406.                         $this->default_template_handler_func,
  1407.                         array($_params['resource_type'], $_params['resource_name'], &$params['source_content'], &$params['resource_timestamp'], &$this));
  1408.                 }
  1409.             }
  1410.         }
  1411.         if (!$_return) {
  1412.             if (!$params['quiet']) {
  1413.                 $this->trigger_error('unable to read resource: "' . $params['resource_name'] . '"');
  1414.             }
  1415.         } else if ($_return && $this->security) {
  1416.             require_once(SMARTY_CORE_DIR . 'core.is_secure.php');
  1417.             if (!smarty_core_is_secure($_params, $this)) {
  1418.                 if (!$params['quiet'])
  1419.                     $this->trigger_error('(secure mode) accessing "' . $params['resource_name'] . '" is not allowed');
  1420.                 $params['source_content'] = null;
  1421.                 $params['resource_timestamp'] = null;
  1422.                 return false;
  1423.             }
  1424.         }
  1425.         return $_return;
  1426.     }
  1427.     /**
  1428.      * parse out the type and name from the resource
  1429.      *
  1430.      * @param string $resource_base_path
  1431.      * @param string $resource_name
  1432.      * @param string $resource_type
  1433.      * @param string $resource_name
  1434.      * @return boolean
  1435.      */
  1436.     function _parse_resource_name(&$params)
  1437.     {
  1438.         // split tpl_path by the first colon
  1439.         $_resource_name_parts = explode(':', $params['resource_name'], 2);
  1440.         if (count($_resource_name_parts) == 1) {
  1441.             // no resource type given
  1442.             $params['resource_type'] = $this->default_resource_type;
  1443.             $params['resource_name'] = $_resource_name_parts[0];
  1444.         } else {
  1445.             if(strlen($_resource_name_parts[0]) == 1) {
  1446.                 // 1 char is not resource type, but part of filepath
  1447.                 $params['resource_type'] = $this->default_resource_type;
  1448.                 $params['resource_name'] = $params['resource_name'];
  1449.             } else {
  1450.                 $params['resource_type'] = $_resource_name_parts[0];
  1451.                 $params['resource_name'] = $_resource_name_parts[1];
  1452.             }
  1453.         }
  1454.         if ($params['resource_type'] == 'file') {
  1455.             if (!preg_match('/^([/\\]|[a-zA-Z]:[/\\])/', $params['resource_name'])) {
  1456.                 // relative pathname to $params['resource_base_path']
  1457.                 // use the first directory where the file is found
  1458.                 foreach ((array)$params['resource_base_path'] as $_curr_path) {
  1459.                     $_fullpath = $_curr_path . DIRECTORY_SEPARATOR . $params['resource_name'];
  1460.                     if (file_exists($_fullpath) && is_file($_fullpath)) {
  1461.                         $params['resource_name'] = $_fullpath;
  1462.                         return true;
  1463.                     }
  1464.                     // didn't find the file, try include_path
  1465.                     $_params = array('file_path' => $_fullpath);
  1466.                     require_once(SMARTY_CORE_DIR . 'core.get_include_path.php');
  1467.                     if(smarty_core_get_include_path($_params, $this)) {
  1468.                         $params['resource_name'] = $_params['new_file_path'];
  1469.                         return true;
  1470.                     }
  1471.                 }
  1472.                 return false;
  1473.             } else {
  1474.                 /* absolute path */
  1475.                 return file_exists($params['resource_name']);
  1476.             }
  1477.         } elseif (empty($this->_plugins['resource'][$params['resource_type']])) {
  1478.             $_params = array('type' => $params['resource_type']);
  1479.             require_once(SMARTY_CORE_DIR . 'core.load_resource_plugin.php');
  1480.             smarty_core_load_resource_plugin($_params, $this);
  1481.         }
  1482.         return true;
  1483.     }
  1484.     /**
  1485.      * Handle modifiers
  1486.      *
  1487.      * @param string|null $modifier_name
  1488.      * @param array|null $map_array
  1489.      * @return string result of modifiers
  1490.      */
  1491.     function _run_mod_handler()
  1492.     {
  1493.         $_args = func_get_args();
  1494.         list($_modifier_name, $_map_array) = array_splice($_args, 0, 2);
  1495.         list($_func_name, $_tpl_file, $_tpl_line) =
  1496.             $this->_plugins['modifier'][$_modifier_name];
  1497.         $_var = $_args[0];
  1498.         foreach ($_var as $_key => $_val) {
  1499.             $_args[0] = $_val;
  1500.             $_var[$_key] = call_user_func_array($_func_name, $_args);
  1501.         }
  1502.         return $_var;
  1503.     }
  1504.     /**
  1505.      * Remove starting and ending quotes from the string
  1506.      *
  1507.      * @param string $string
  1508.      * @return string
  1509.      */
  1510.     function _dequote($string)
  1511.     {
  1512.         if (($string{0} == "'" || $string{0} == '"') &&
  1513.             $string{strlen($string)-1} == $string{0})
  1514.             return substr($string, 1, -1);
  1515.         else
  1516.             return $string;
  1517.     }
  1518.     /**
  1519.      * read in a file from line $start for $lines.
  1520.      * read the entire file if $start and $lines are null.
  1521.      *
  1522.      * @param string $filename
  1523.      * @param integer $start
  1524.      * @param integer $lines
  1525.      * @return string
  1526.      */
  1527.     function _read_file($filename)
  1528.     {
  1529.         if ( file_exists($filename) && ($fd = @fopen($filename, 'rb')) ) {
  1530.             $contents = ($size = filesize($filename)) ? fread($fd, $size) : '';
  1531.             fclose($fd);
  1532.             return $contents;
  1533.         } else {
  1534.             return false;
  1535.         }
  1536.     }
  1537.     /**
  1538.      * get a concrete filename for automagically created content
  1539.      *
  1540.      * @param string $auto_base
  1541.      * @param string $auto_source
  1542.      * @param string $auto_id
  1543.      * @return string
  1544.      * @staticvar string|null
  1545.      * @staticvar string|null
  1546.      */
  1547.     function _get_auto_filename($auto_base, $auto_source = null, $auto_id = null)
  1548.     {
  1549.         $_compile_dir_sep =  $this->use_sub_dirs ? DIRECTORY_SEPARATOR : '^';
  1550.         $_return = $auto_base . DIRECTORY_SEPARATOR;
  1551.         if(isset($auto_id)) {
  1552.             // make auto_id safe for directory names
  1553.             $auto_id = str_replace('%7C',$_compile_dir_sep,(urlencode($auto_id)));
  1554.             // split into separate directories
  1555.             $_return .= $auto_id . $_compile_dir_sep;
  1556.         }
  1557.         if(isset($auto_source)) {
  1558.             // make source name safe for filename
  1559.             $_filename = urlencode(basename($auto_source));
  1560.             $_crc32 = sprintf('%08X', crc32($auto_source));
  1561.             // prepend %% to avoid name conflicts with
  1562.             // with $params['auto_id'] names
  1563.             $_crc32 = substr($_crc32, 0, 2) . $_compile_dir_sep .
  1564.                       substr($_crc32, 0, 3) . $_compile_dir_sep . $_crc32;
  1565.             $_return .= '%%' . $_crc32 . '%%' . $_filename;
  1566.         }
  1567.         return $_return;
  1568.     }
  1569.     /**
  1570.      * unlink a file, possibly using expiration time
  1571.      *
  1572.      * @param string $resource
  1573.      * @param integer $exp_time
  1574.      */
  1575.     function _unlink($resource, $exp_time = null)
  1576.     {
  1577.         if(isset($exp_time)) {
  1578.             if(time() - @filemtime($resource) >= $exp_time) {
  1579.                 return @unlink($resource);
  1580.             }
  1581.         } else {
  1582.             return @unlink($resource);
  1583.         }
  1584.     }
  1585.     /**
  1586.      * returns an auto_id for auto-file-functions
  1587.      *
  1588.      * @param string $cache_id
  1589.      * @param string $compile_id
  1590.      * @return string|null
  1591.      */
  1592.     function _get_auto_id($cache_id=null, $compile_id=null) {
  1593.     if (isset($cache_id))
  1594.         return (isset($compile_id)) ? $cache_id . '|' . $compile_id  : $cache_id;
  1595.     elseif(isset($compile_id))
  1596.         return $compile_id;
  1597.     else
  1598.         return null;
  1599.     }
  1600.     /**
  1601.      * trigger Smarty plugin error
  1602.      *
  1603.      * @param string $error_msg
  1604.      * @param string $tpl_file
  1605.      * @param integer $tpl_line
  1606.      * @param string $file
  1607.      * @param integer $line
  1608.      * @param integer $error_type
  1609.      */
  1610.     function _trigger_fatal_error($error_msg, $tpl_file = null, $tpl_line = null,
  1611.             $file = null, $line = null, $error_type = E_USER_ERROR)
  1612.     {
  1613.         if(isset($file) && isset($line)) {
  1614.             $info = ' ('.basename($file).", line $line)";
  1615.         } else {
  1616.             $info = '';
  1617.         }
  1618.         if (isset($tpl_line) && isset($tpl_file)) {
  1619.             $this->trigger_error('[in ' . $tpl_file . ' line ' . $tpl_line . "]: $error_msg$info", $error_type);
  1620.         } else {
  1621.             $this->trigger_error($error_msg . $info, $error_type);
  1622.         }
  1623.     }
  1624.     /**
  1625.      * callback function for preg_replace, to call a non-cacheable block
  1626.      * @return string
  1627.      */
  1628.     function _process_compiled_include_callback($match) {
  1629.         $_func = '_smarty_tplfunc_'.$match[2].'_'.$match[3];
  1630.         ob_start();
  1631.         $_func($this);
  1632.         $_ret = ob_get_contents();
  1633.         ob_end_clean();
  1634.         return $_ret;
  1635.     }
  1636.     /**
  1637.      * called for included templates
  1638.      *
  1639.      * @param string $_smarty_include_tpl_file
  1640.      * @param string $_smarty_include_vars
  1641.      */
  1642.     // $_smarty_include_tpl_file, $_smarty_include_vars
  1643.     function _smarty_include($params)
  1644.     {
  1645.         if ($this->debugging) {
  1646.             $_params = array();
  1647.             require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');
  1648.             $debug_start_time = smarty_core_get_microtime($_params, $this);
  1649.             $this->_smarty_debug_info[] = array('type'      => 'template',
  1650.                                                   'filename'  => $params['smarty_include_tpl_file'],
  1651.                                                   'depth'     => ++$this->_inclusion_depth);
  1652.             $included_tpls_idx = count($this->_smarty_debug_info) - 1;
  1653.         }
  1654.         $this->_tpl_vars = array_merge($this->_tpl_vars, $params['smarty_include_vars']);
  1655.         // config vars are treated as local, so push a copy of the
  1656.         // current ones onto the front of the stack
  1657.         array_unshift($this->_config, $this->_config[0]);
  1658.         $_smarty_compile_path = $this->_get_compile_path($params['smarty_include_tpl_file']);
  1659.         if ($this->_is_compiled($params['smarty_include_tpl_file'], $_smarty_compile_path)
  1660.             || $this->_compile_resource($params['smarty_include_tpl_file'], $_smarty_compile_path))
  1661.         {
  1662.             include($_smarty_compile_path);
  1663.         }
  1664.         // pop the local vars off the front of the stack
  1665.         array_shift($this->_config);
  1666.         $this->_inclusion_depth--;
  1667.         if ($this->debugging) {
  1668.             // capture time for debugging info
  1669.             $_params = array();
  1670.             require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');
  1671.             $this->_smarty_debug_info[$included_tpls_idx]['exec_time'] = smarty_core_get_microtime($_params, $this) - $debug_start_time;
  1672.         }
  1673.         if ($this->caching) {
  1674.             $this->_cache_info['template'][$params['smarty_include_tpl_file']] = true;
  1675.         }
  1676.     }
  1677.     /**
  1678.      * get or set an array of cached attributes for function that is
  1679.      * not cacheable
  1680.      * @return array
  1681.      */
  1682.     function &_smarty_cache_attrs($cache_serial, $count) {
  1683.         $_cache_attrs =& $this->_cache_info['cache_attrs'][$cache_serial][$count];
  1684.         if ($this->_cache_including) {
  1685.             /* return next set of cache_attrs */
  1686.             $_return =& current($_cache_attrs);
  1687.             next($_cache_attrs);
  1688.             return $_return;
  1689.         } else {
  1690.             /* add a reference to a new set of cache_attrs */
  1691.             $_cache_attrs[] = array();
  1692.             return $_cache_attrs[count($_cache_attrs)-1];
  1693.         }
  1694.     }
  1695.     /**
  1696.      * wrapper for include() retaining $this
  1697.      * @return mixed
  1698.      */
  1699.     function _include($filename, $once=false, $params=null)
  1700.     {
  1701.         if ($once) {
  1702.             return include_once($filename);
  1703.         } else {
  1704.             return include($filename);
  1705.         }
  1706.     }
  1707.     /**
  1708.      * wrapper for eval() retaining $this
  1709.      * @return mixed
  1710.      */
  1711.     function _eval($code, $params=null)
  1712.     {
  1713.         return eval($code);
  1714.     }
  1715.     /**#@-*/
  1716. }
  1717. /* vim: set expandtab: */
  1718. ?>