Beispiel #1
0
/* 
 * Page definition 
 * @kaveh raji <*****@*****.**>
 */
/* 
 * Init routine
 */
include "inc/init.inc.php";
/* 
 * Defining the pages
 */
$pages = array("logout");
/* 
 * Controller routines
 */
UserCtl::Logout(SessionCtl::GetSession());
setcookie('username', "");
$tpl->assign("username", $_COOKIE['username']);
/* 
 * Assignments to the engine
 */
$tpl->assign("content_pages", $pages);
/* 
 * Output of the page
 */
$tpl->draw("header");
$tpl->draw("body");
$tpl->draw("menu");
$tpl->draw("head");
$tpl->draw("content");
$tpl->draw("footer");