This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/include/sidebar_admin.php
Chris Morgan 4ffd2190bf Show the number of applications that are in the submission queue next to the
"View app queue" link so admins don't have to view the queue to see if there
is anything that needs to be processed.
2004-11-09 22:33:54 +00:00

27 lines
540 B
PHP

<?
/*
* sidebar_admin
*
*/
function global_admin_menu() {
global $apidb_root;
$g = new htmlmenu("Global Admin");
$g->add("Add Category", $apidb_root."admin/addCategory.php");
$g->add("Add Application", $apidb_root."admin/addAppFamily.php?catId=0");
$g->add("Add Vendor", $apidb_root."admin/addVendor.php");
$g->addmisc("&nbsp;");
$g->add("List Users", $apidb_root."admin/");
$g->add("View App Queue (".getQueuedAppCount().")", $apidb_root."admin/adminAppQueue.php");
$g->done();
}
?>