<?php

require_once('libs/Smarty.class.php');

class Smarty_config extends Smarty {

  public function __construct() {
    parent::__construct();
    $this->template_dir = 'smarty/templates/';
    $this->config_dir   = 'smarty/configs/';
    $this->compile_dir  = 'smarty/templates_c/';
    $this->cache_dir    = 'smarty/cache/';
  }
}

?>
