mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 14:32:31 +00:00
81 lines
2.9 KiB
PHP
81 lines
2.9 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", "/documentation.php", "Documentation", FALSE);
|
|
menuItemLink ("lists", "/lists.php", "Mailing Lists", FALSE);
|
|
menuItemLink ("news", "/old_news.php", "News Archive", TRUE);
|
|
menuSectionFooter ();
|
|
|
|
// Developers
|
|
menuSectionHeader ("Developers");
|
|
menuItemLink ("devtools", "/devtools.php", "Developer Tools", FALSE);
|
|
menuItemLink ("bugs", "/bugs/", "Bug Tracker", FALSE);
|
|
menuItemLink ("cvs", "http://quake.svn.sourceforge.net/viewvc/quake/", "Subversion", FALSE);
|
|
// menuItemLink ("plans", "/plans.php", "Developer Plans", FALSE);
|
|
// menuItemLink ("patches", "http://sourceforge.net/patch/?group_id=882", "Patch Manager", FALSE);
|
|
// menuItemLink ("support", "http://sourceforge.net/support/?group_id=882", "Support Manager", FALSE);
|
|
// menuItemLink ("tasks", "http://sourceforge.net/pm/?group_id=882", "Task Manager", FALSE);
|
|
menuItemLink ("progress", "/progress.php", "Progress", TRUE);
|
|
menuSectionFooter ();
|
|
|
|
// searchMenu ();
|
|
?>
|
|
<SPAN class="centered"><A class="sfLogo" href="http://sourceforge.net/"><IMG src="http://sflogo.sourceforge.net/sflogo.php?group_id=882&type=2" width="125" height="37" border="0" alt="SourceForge Logo"></A></SPAN>
|
|
</DIV>
|
|
<!-- end menu -->
|