<?php
/*********************************************************************************
  ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
   * ("License"); You may not use this file except in compliance with the License
   * The Original Code is:  vtiger CRM Open Source
   * The Initial Developer of the Original Code is vtiger.
   * Portions created by vtiger are Copyright (C) vtiger.
   * All Rights Reserved.
  *
 ********************************************************************************/

require('Smarty/libs/Smarty.class.php');
require('config.inc.php');

class vtigerCRM_Smarty extends Smarty{

	/**This function sets the smarty directory path for the member variables
	*/
	function vtigerCRM_Smarty()
	{
		global $CALENDAR_DISPLAY, $WORLD_CLOCK_DISPLAY, $CALCULATOR_DISPLAY, $CHAT_DISPLAY;

		$this->Smarty();

		if(isset($_SESSION['authenticated_user_theme']) && $_SESSION['authenticated_user_theme'] != '')
		{
			$templatedir = 'Smarty/templates/'.$_SESSION['authenticated_user_theme'];
		}
		else
		{
			$templatedir = $default_theme;
		}

		if (!is_dir($templatedir)){
			$templatedir = 'Smarty/templates/default/';
		}


		$this->template_dir = $templatedir;
		$this->compile_dir = 'Smarty/templates_c';
		$this->config_dir = 'Smarty/configs';
		$this->cache_dir = 'Smarty/cache';


		//$this->caching = true;
	        //$this->assign('app_name', 'Login');
		$this->assign('CALENDAR_DISPLAY', $CALENDAR_DISPLAY);
 		$this->assign('WORLD_CLOCK_DISPLAY', $WORLD_CLOCK_DISPLAY);
 		$this->assign('CALCULATOR_DISPLAY', $CALCULATOR_DISPLAY);
 		$this->assign('CHAT_DISPLAY', $CHAT_DISPLAY);
	}
}

?>