auth(); $inc->template(); $GLOBALS['auth']->logout(); // Define the three sets of links in the template $GLOBALS['template']->links('none', 'none'); $GLOBALS['template']->assign('links_main', array( array('title' => $GLOBALS['lang']['login'], 'url' => $GLOBALS['conf']['url'].'/admin/login.php') )); // Assign the page's title and the content template that needs to be used $GLOBALS['template']->assign('title', $GLOBALS['lang']['logout']); $GLOBALS['template']->assign('content', 'admin_logout.tpl'); // Display the output $GLOBALS['template']->display('admin.tpl'); // do events that need to be done at the end of the file $inc->finished(); ?>