<?PHP
$rootpath=$_SERVER['DOCUMENT_ROOT'] . "/";
include_once($rootpath . "common.php");
$ttem->set_filenames(array("header"=>$rootpath."html_template/header.html"));
$ttem->set_filenames(array("body"=>$rootpath."html_template/exchange/exchange_reservestage1money.html"));
$ttem->set_filenames(array("top_menu"=>$rootpath."html_template/exchange/exchange_menu.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($request);
//print_r($response);
//echo("</PRE>");
if (isset($response['exchangeitem']))
{
$temp = $response['exchangeitem'];
$ttem->assign_var("VAR_ITEMNAME", $temp->getitemname());
if ($temp->getexchangetype()==EX_MONEY)
{
$ttem->assign_var("VAR_REQ", "$" . $temp->getexchangeprice());
}
else
$ttem->assign_var("VAR_REQ", $temp->getexchangeitem());
$ttem->assign_var("VAR_ID", $temp->getid());
}
assignlang($ttem);
$ttem->assign_var_from_handle("PAGE_LEFT_MENU", "pageleft");
$ttem->assign_var_from_handle("PAGE_EXCHANGE_MENU", "top_menu");
$ttem->pparse("header");
$ttem->pparse("body");
$ttem->pparse("footer");
?>