<?php

require_once(BASEPATH.'/lib/smarty/Smarty.class.php');

class MySmarty extends Smarty {

    public function __construct() {
        parent::__construct();
        $this->caching = Smarty::CACHING_OFF;
        $this->template_dir = BASEPATH.'/template';
        $this->compile_dir = BASEPATH.'/caches/smarty/compile';
        $this->cache_dir = BASEPATH.'/caches/smarty';
        $this->addPluginsDir(BASEPATH.'/lib/smarty-plugins');
    }

}

?>