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