<?php require 'smarty/libs/Smarty.class.php'; class PHPFSPOT_TMPL extends Smarty { var $parent; public function __construct($parent) { $this->Smarty(); $this->template_dir = $parent->cfg->base_path .'/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'; } // __construct() public function show($template) { $this->display($template); } // show() } ?>