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.php

31 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/***********/
/* SideBar */
/***********/
require_once(BASE."include/distribution.php");
require_once(BASE."include/vendor.php");
require_once(BASE."include/util.php");
2004-03-15 16:22:00 +00:00
function global_sidebar_menu()
{
global $aClean;
$g = new htmlmenu("OS List");
2008-02-27 14:16:43 +01:00
$g->add('Home', BASE.'index.php');
$g->add("Screenshots", BASE."objectManager.php?sClass=screenshot&amp;sTitle=View+Screenshots");
$g->add("Browse OSes", BASE."objectManager.php?sClass=application&amp;".
'sTitle=Browse%20Applications&amp;sOrderBy=appName&amp;bAscending=true');
$g->add('Browse by Developer', BASE.'objectManager.php?sClass=vendor&amp;sTitle=Browse%20by%20Developer');
$g->add("Top 25", BASE."votestats.php");
$g->add("Submit OS", BASE."objectManager.php?sClass=application_queue&amp;".
"sTitle=Submit+Application&amp;sAction=add");
2008-12-05 16:44:29 -06:00
$g->add("Help", BASE."help/");
$g->add("Statistics", BASE."appdbStats.php");
$g->add('Distributions ('.distribution::objectGetEntriesCount('accepted').')', BASE.'objectManager.php?sClass=distribution&amp;sTitle=View%20Distributions');
$g->add("Email Us", "mailto:qemu-devel@nongnu.org");
2008-01-06 01:14:56 +01:00
$g->done();
2004-03-15 16:22:00 +00:00
}
?>