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

29 lines
1.0 KiB
PHP
Raw Normal View History

<?php
/*****************/
/* sidebar_admin */
/*****************/
2004-03-15 16:22:00 +00:00
function global_admin_menu() {
$g = new htmlmenu("Global Admin");
$g->add("Add Category", BASE."admin/addCategory.php");
$g->add("Add Application", BASE."admin/addAppFamily.php?catId=0");
$g->add("Add Vendor", BASE."admin/addVendor.php");
2004-03-15 16:22:00 +00:00
$g->addmisc("&nbsp;");
$g->add("View App Queue (".getQueuedAppCount().")", BASE."admin/adminAppQueue.php");
$g->add("View App Data Queue (".getQueuedAppDataCount().")", BASE."admin/adminAppDataQueue.php");
$g->add("View Maintainer Queue (".getQueuedMaintainerCount().")", BASE."admin/adminMaintainerQueue.php");
$g->add("View Maintainer Entries (".getMaintainerCount().")", BASE."admin/adminMaintainers.php");
$g->add("View Vendors (".getVendorCount().")", BASE."admin/adminVendors.php");
2004-12-01 22:27:35 +00:00
$g->addmisc("&nbsp;");
$g->add("Users Management", BASE."admin/adminUsers.php");
$g->add("Comments Management", BASE."admin/adminCommentView.php");
2004-03-15 16:22:00 +00:00
$g->done();
}
?>