mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 07:11:43 +00:00
79 lines
2.8 KiB
PHP
79 lines
2.8 KiB
PHP
<!-- begin menu -->
|
|
<DIV class="menu" id="menu">
|
|
<?
|
|
function menuSectionHeader ($name)
|
|
{
|
|
echo "<!-- menuSectionHeader(" . $name . ') -->' .
|
|
'<SPAN class="menuTitle">' . $name . '<SPAN class="nodisplay">:</SPAN></SPAN>' .
|
|
'<SPAN class="nodisplay"> [ </SPAN>';
|
|
}
|
|
|
|
function menuSectionFooter ()
|
|
{
|
|
echo "\n";
|
|
}
|
|
|
|
function menuItemLink ($name, $url, $desc, $last)
|
|
{
|
|
global $currPage;
|
|
|
|
if ($last) {
|
|
$chr = ' ]';
|
|
$final = '<BR>';
|
|
} else {
|
|
$chr = ' | ';
|
|
}
|
|
|
|
if ($name == $currPage) {
|
|
echo '<SPAN class="menuItem"><A class="selected" href="' . $url . '">' . $desc . '</A></SPAN>';
|
|
} else {
|
|
echo '<SPAN class="menuItem"><A href="' . $url . '">' . $desc . '</A></SPAN>';
|
|
}
|
|
echo "<SPAN class=\"nodisplay\">$chr</SPAN>$final";
|
|
}
|
|
|
|
function searchMenu ()
|
|
{
|
|
menuSectionHeader ("Search");
|
|
echo '<FORM action="search.php" method="POST">'
|
|
.' <SELECT name="type_of_search">'
|
|
.' <OPTION value="news">News</OPTION>'
|
|
.' <OPTION value="site">Site</OPTION>'
|
|
// .' <OPTION value="bugs">Bug Tracker</OPTION>'
|
|
// .' <OPTION value="patches">Patches</OPTION>'
|
|
.' </SELECT>'
|
|
.' <INPUT type="checkbox" name="exact" value="1" checked> Require Exact Match'
|
|
.' <INPUT type="hidden" name="forum_id" value="">'
|
|
.' <INPUT type="hidden" name="is_bug_page" value="">'
|
|
.' <INPUT type="hidden" name="group_id" value="882">'
|
|
.' <INPUT type="text" name="words" size="15" value="">'
|
|
.' <INPUT type="submit" name="Search" value="Search">'
|
|
.'</FORM>';
|
|
menuSectionFooter ();
|
|
}
|
|
|
|
// Project
|
|
menuSectionHeader ("Project");
|
|
menuItemLink ("home", "/", "Home", FALSE);
|
|
menuItemLink ("shots", "/screenshots.php", "Screen Shots", FALSE);
|
|
menuItemLink ("files", "/files.php", "Downloads", FALSE);
|
|
menuItemLink ("docs", "/doxygen/", "Documentation", FALSE);
|
|
menuItemLink ("lists", "/lists.php", "Mailing Lists", FALSE);
|
|
menuItemLink ("news", "/old_news.php", "News Archive", TRUE);
|
|
menuSectionFooter ();
|
|
|
|
// Developers
|
|
menuSectionHeader ("Developers");
|
|
menuItemLink ("plans", "/plan.php", "Developer Plans", FALSE);
|
|
menuItemLink ("devtools", "/devtools.php", "Developer Tools", FALSE);
|
|
menuItemLink ("cvs", "http://quake.git.sourceforge.net/", "Browse Git Trees", FALSE);
|
|
menuItemLink ("bugs", "http://sourceforge.net/tracker/?func=browse&group_id=882&atid=100882", "Bug Tracker", FALSE);
|
|
menuItemLink ("patches", "http://sourceforge.net/tracker/?func=browse&group_id=882&atid=300882", "Patch Manager", FALSE);
|
|
menuItemLink ("progress", "/progress.php", "Progress", TRUE);
|
|
menuSectionFooter ();
|
|
|
|
// searchMenu ();
|
|
?>
|
|
<SPAN class="centered"><A class="sfLogo" href="http://sourceforge.net/projects/quake/"><IMG src="http://sflogo.sourceforge.net/sflogo.php?group_id=882&type=2" width="125" height="37" alt="SourceForge Logo"></A></SPAN>
|
|
</DIV>
|
|
<!-- end menu -->
|