Esempio n. 1
0
*/
$smartyType = "www";
include_once "../includes/default.inc.php";
$auth->is_authenticated();
include_once 'guestclass.inc.php';
$guest = new Guest();
$smarty->assign("tpl_title", "Adresse verknüpfen");
$smarty->assign('tpl_nav', 'gast');
$smarty->assign('tpl_type', 'showgast');
if ($request->GetVar('guestid', 'get') !== $request->undefined) {
    $guestid = $request->GetVar('guestid', 'get');
    $type = $request->GetVar('type', 'get');
} elseif ($request->GetVar('frm_guestid', 'post') !== $request->undefined) {
    $guestid = $request->GetVar('frm_guestid', 'post');
    $type = $request->GetVar('frm_type', 'post');
}
$smarty->assign('tpl_gast', $guest->getGuest($guestid));
$smarty->assign('tpl_type', $type);
$smarty->assign('tpl_finish', false);
if ($request->GetVar('frm_newaddress', 'post') !== $request->undefined) {
    $guest->shareaddress($request->GetVar('frm_newaddress', 'post'), $guestid, $type);
    $smarty->assign('tpl_finish', true);
} elseif ($request->GetVar('frm_firstname', 'post') !== $request->undefined) {
    $guests = $guest->asearch($request->GetVar('frm_firstname', 'post'), $request->GetVar('frm_lastname', 'post'));
    $smarty->assign('tpl_numresult', sizeof($guests));
    $smarty->assign('tpl_isresult', 'true');
    $smarty->assign('tpl_firstname', $request->GetVar('frm_firstname', 'post'));
    $smarty->assign('tpl_lastname', $request->GetVar('frm_lastname', 'post'));
    $smarty->assign('tpl_result', $guests);
}
$smarty->display('shareaddress.tpl');