<?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_form.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>");
$ttem->assign_var("VAR_PANEL_EXCHANGEITEM_DISPLAY", "none");
$ttem->assign_var("VAR_PANEL_EXCHANGEPRICE_DISPLAY", "none");
@reset($response);
foreach ($response as $key => $value)
{
if ($key == "f_exchangetype")
{
$ttem->assign_var("VAR_F_EXCHANGETYPE_" . $value, "selected");
if ($value == 2)
$ttem->assign_var("VAR_PANEL_EXCHANGEITEM_DISPLAY", "block");
elseif ($value == 1)
$ttem->assign_var("VAR_PANEL_EXCHANGEPRICE_DISPLAY", "block");
}
elseif ($key == "f_delivery")
{
$ttem->assign_var("VAR_F_DELIVERY_" . $value, "selected");
}
elseif (ereg("f_", $key, $matches))
{
$ttem->assign_var("VAR_" . strtoupper($key), $value);
}
}
if (isset($response['formcheckerrmsg']))
{
for ($i= 0; $i < count($response['formcheckerrmsg']); $i++)
{
$tempobj = $response['formcheckerrmsg'][$i];
if (isset($rb[$tempobj['msg']]))
$ttem->assign_var(strtoupper("ERR_VAR_" . $tempobj['field']), $rb[$tempobj['msg']]);
else
$ttem->assign_var(strtoupper("ERR_VAR_" . $tempobj['field']), $tempobj['msg']);
}
}
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");
?>