speedup lightbox2 resizing antimation
[phpfspot.git] / phpfspot_tmpl.php
index 9609477f0b7cbcaf06dbd5ce15213ddc2afe3d43..3fdf2ac2626df5c356bab3aefc5443400f3b69a8 100644 (file)
  *
  ***************************************************************************/
 
  *
  ***************************************************************************/
 
-require 'smarty/libs/Smarty.class.php';
-
 class PHPFSPOT_TMPL extends Smarty {
 
    var $parent;
 
    public function __construct($parent)
    {
 class PHPFSPOT_TMPL extends Smarty {
 
    var $parent;
 
    public function __construct($parent)
    {
+      if(!file_exists($parent->cfg->base_path .'/themes/'. $parent->cfg->theme_name .'/templates')) {
+         print "No templates found in ". $parent->cfg->base_path .'/themes/'. $parent->cfg->theme_name .'/templates';
+         exit(1);
+      }
+
       $this->Smarty();
       $this->Smarty();
-      $this->template_dir = $parent->cfg->base_path .'/templates';
+      $this->template_dir = $parent->cfg->base_path .'/themes/'. $parent->cfg->theme_name .'/templates';
       $this->compile_dir  = $parent->cfg->base_path .'/templates_c';
       $this->config_dir   = $parent->cfg->base_path .'/smarty_config';
       $this->cache_dir    = $parent->cfg->base_path .'/smarty_cache';
 
       $this->compile_dir  = $parent->cfg->base_path .'/templates_c';
       $this->config_dir   = $parent->cfg->base_path .'/smarty_config';
       $this->cache_dir    = $parent->cfg->base_path .'/smarty_cache';
 
+      if(isset($parent->cfg->use_lightbox) && $parent->cfg->use_lightbox == true)
+         $this->assign('use_lightbox', 'true');
+      if(isset($parent->cfg->use_autocomplete) && $parent->cfg->use_autocomplete == true)
+         $this->assign('use_autocomplete', 'true');
+
    } // __construct()
 
    public function show($template)
    } // __construct()
 
    public function show($template)