<?PHP
$rootpath=$_SERVER['DOCUMENT_ROOT'] . "/";
include_once($rootpath . "common.php");
$ttem->set_filenames(array("header"=>$rootpath."html_template/header.html"));
$ttem->set_filenames(array("top_menu"=>$rootpath."html_template/exchange/exchange_menu.html"));
$ttem->set_filenames(array("body"=>$rootpath."html_template/exchange/search/exchange_search.html"));
$ttem->set_filenames(array("searchform" => $rootpath . "html_template/exchange/search/search_form.html"));
if (NSession::check_login()==true)
{
$ttem->set_filenames(array("pageleft"=>$rootpath."html_template/left_logined.html"));
}
else
{
$ttem->set_filenames(array("pageleft"=>$rootpath."html_template/left_login.html"));
}
$ttem->set_filenames(array("footer"=>$rootpath."html_template/footer.html"));
$ttem->assign_var("APP_ROOT", $webappcfg['APPPATH']);
//echo("<PRE>");
//print_r($response);
//echo("</PRE>");
if (isset($response))
{
@reset($response);
foreach ($response as $key => $value)
{
if (ereg("f_", $key, $matches))
{
$ttem->assign_var("VAR_" . strtoupper($key), $value);
}
}
}
assignlang($ttem);
$ttem->assign_var_from_handle("PAGE_LEFT_MENU", "pageleft");
$ttem->assign_var_from_handle("PAGE_EXCHANGE_MENU", "top_menu");
$ttem->assign_var_from_handle("PAGE_EXCHANGE_SEARCH_FORM", "searchform");
$ttem->pparse("header");
$ttem->pparse("body");
$ttem->pparse("footer");
?>