<?php
require( HELPERS.'/smarty/libs/Smarty.class.php'); //load Smarty library
class Smarty_Connect extends Smarty
{
function smarty_connect()
{
$this->Smarty();
$this->template_dir = TEMPLATES;
$this->config_dir = CONFIGS;
$this->compile_dir = ROOT . '/templates_c';
}
}
?>