Ejemplo n.º 1
0
 /**
  * Create template data object
  * Some of the global Smarty settings copied to template scope
  * It load the required template resources and caching plugins
  *
  * @param string                                                  $template_resource template resource string
  * @param Smarty                                                  $smarty            Smarty instance
  * @param \Smarty_Internal_Template|\Smarty|\Smarty_Internal_Data $_parent           back pointer to parent object
  *                                                                                   with variables or null
  * @param mixed                                                   $_cache_id         cache   id or null
  * @param mixed                                                   $_compile_id       compile id or null
  * @param bool                                                    $_caching          use caching?
  * @param int                                                     $_cache_lifetime   cache life-time in seconds
  *
  * @throws \SmartyException
  */
 public function __construct($template_resource, Smarty $smarty, Smarty_Internal_Data $_parent = null, $_cache_id = null, $_compile_id = null, $_caching = null, $_cache_lifetime = null)
 {
     $this->smarty =& $smarty;
     // Smarty parameter
     $this->cache_id = $_cache_id === null ? $this->smarty->cache_id : $_cache_id;
     $this->compile_id = $_compile_id === null ? $this->smarty->compile_id : $_compile_id;
     $this->caching = $_caching === null ? $this->smarty->caching : $_caching;
     if ($this->caching === true) {
         $this->caching = Smarty::CACHING_LIFETIME_CURRENT;
     }
     $this->cache_lifetime = $_cache_lifetime === null ? $this->smarty->cache_lifetime : $_cache_lifetime;
     $this->parent = $_parent;
     // Template resource
     $this->template_resource = $template_resource;
     $this->source = Smarty_Template_Source::load($this);
     parent::__construct();
 }
Ejemplo n.º 2
0
 /**
  * Initialize new Smarty object
  */
 public function __construct()
 {
     parent::__construct();
     if (is_callable('mb_internal_encoding')) {
         mb_internal_encoding(Smarty::$_CHARSET);
     }
     $this->start_time = microtime(true);
     if (isset($_SERVER['SCRIPT_NAME'])) {
         Smarty::$global_tpl_vars['SCRIPT_NAME'] = new Smarty_Variable($_SERVER['SCRIPT_NAME']);
     }
     // Check if we're running on windows
     Smarty::$_IS_WINDOWS = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
     // let PCRE (preg_*) treat strings as ISO-8859-1 if we're not dealing with UTF-8
     if (Smarty::$_CHARSET !== 'UTF-8') {
         Smarty::$_UTF8_MODIFIER = '';
     }
 }
Ejemplo n.º 3
0
 /**
  * Create template data object
  * Some of the global Smarty settings copied to template scope
  * It load the required template resources and caching plugins
  *
  * @param string                                                       $template_resource template resource string
  * @param Smarty                                                       $smarty            Smarty instance
  * @param null|\Smarty_Internal_Template|\Smarty|\Smarty_Internal_Data $_parent           back pointer to parent object
  *                                                                                        with variables or null
  * @param mixed                                                        $_cache_id         cache   id or null
  * @param mixed                                                        $_compile_id       compile id or null
  * @param bool|int|null                                                $_caching          use caching?
  * @param int|null                                                     $_cache_lifetime   cache life-time in seconds
  * @param bool                                                         $_isConfig
  *
  * @throws \SmartyException
  */
 public function __construct($template_resource, Smarty $smarty, Smarty_Internal_Data $_parent = null, $_cache_id = null, $_compile_id = null, $_caching = null, $_cache_lifetime = null, $_isConfig = false)
 {
     $this->smarty = $smarty;
     // Smarty parameter
     $this->cache_id = $_cache_id === null ? $this->smarty->cache_id : $_cache_id;
     $this->compile_id = $_compile_id === null ? $this->smarty->compile_id : $_compile_id;
     $this->caching = $_caching === null ? $this->smarty->caching : $_caching;
     if ($this->caching === true) {
         $this->caching = Smarty::CACHING_LIFETIME_CURRENT;
     }
     $this->cache_lifetime = $_cache_lifetime === null ? $this->smarty->cache_lifetime : $_cache_lifetime;
     $this->parent = $_parent;
     // Template resource
     $this->template_resource = $template_resource;
     $this->source = $_isConfig ? Smarty_Template_Config::load($this) : Smarty_Template_Source::load($this);
     parent::__construct();
     if ($smarty->security_policy && method_exists($smarty->security_policy, 'registerCallBacks')) {
         $smarty->security_policy->registerCallBacks($this);
     }
 }