auth(); $inc->template(); $inc->module(); // Check to see if the person is not logged in $GLOBALS['auth']->check_logout(); // Define the three sets of links in the template if (isset($_GET['type'])) { if ($_GET['type'] == 'operator') { if ($GLOBALS['auth']->operator()) { $GLOBALS['template']->links('operator', 'operator'); } } elseif ($_GET['type'] == 'admin') { if ($GLOBALS['auth']->admin()) { $GLOBALS['template']->links('admin', 'admin'); } } elseif ($_GET['type'] == 'conf') { if ($GLOBALS['auth']->admin()) { $GLOBALS['template']->links('conf', 'conf'); } } } else { if ($GLOBALS['auth']->operator()) { $GLOBALS['template']->links('operator', 'operator'); } } $GLOBALS['template']->assign('links_main', ''); $GLOBALS['template']->assign('modules', $GLOBALS['module']->links(addslashes($_GET['type']), 'true')); // Assign the page's title and the content template that needs to be used $GLOBALS['template']->assign('title', $GLOBALS['lang']['modules']); $GLOBALS['template']->assign('content', 'admin_modules.tpl'); // Include the javascript files $GLOBALS['template']->assign('javascript', 'misc&monitor'); // Display the output $GLOBALS['template']->display('admin.tpl'); // do events that need to be done at the end of the file $inc->finished(); ?>