website/parts/topmain.php

58 lines
2.3 KiB
PHP
Raw Normal View History

2000-05-08 02:39:55 +00:00
<?
need ('table');
function isFocused ($name, $newname)
{
return (strToLower ($name) == strToLower ($newname)) ? 1 : 0;
}
function iconLink ($url, $img, $desc, $border)
{
echo '<A class="tabs" href="' . $url . '"><IMG src="' . $img . '" alt="' . $desc . ' " hSpace="3" vSpace="1" border="' . $border . '" width="24" height="24"></A>';
}
function iconBar ($focused)
{
echo '<TABLE border="0" cellSpacing="0" cellPadding="2" bgColor="white">' .
'<TR>';
tableSpacer (1, 1, 1, "white");
2000-03-07 21:43:09 +00:00
echo '<TD>';
iconLink ('http://sourceforge.net/project/?group_id=882', '/img/icons/anvil.png', 'SourceForge', isFocused($focused, 'summary'));
iconLink ('/', '/img/icons/home.png', 'Homepage', isFocused($focused, 'home'));
iconLink ('http://sourceforge.net/bugs/?group_id=882', '/img/icons/bugs.png', 'Bugs', isFocused($focused, 'bugs'));
// iconLink ('http://sourceforge.net/support/?group_id=882', '/img/icons/support.png', 'Support', isFocused($focused, 'support'));
iconLink ('http://sourceforge.net/patch/?group_id=882', '/img/icons/patch.png', 'Patches', isFocused($focused, 'patch'));
iconLink ('http://sourceforge.net/mail/?group_id=882', '/img/icons/mail.png', 'Lists', isFocused($focused, 'mail'));
iconLink ('http://sourceforge.net/pm/?group_id=882', '/img/icons/tasks.png', 'Tasks', isFocused($focused, 'tasks'));
// iconLink ('http://sourceforge.net/survey/?group_id=882', '/img/icons/survey.png', 'Surveys', isFocused($focused, 'survey'));
iconLink ('/news.php', '/img/icons/news.png', 'News', isFocused($focused, 'news'));
iconLink ('http://sourceforge.net/cvs/?group_id=882', '/img/icons/cvs.png', 'CVS', isFocused($focused, 'cvs'));
iconLink ('http://sourceforge.net/project/filelist.php?group_id=882', '/img/icons/download.png', 'Downloads', isFocused($focused, 'download'));
echo '</TD></TR></TABLE>';
}
function topBar ($pageName)
2000-05-08 02:39:55 +00:00
{
global $focused;
tableHeader ("100%", "black");
2000-05-08 02:39:55 +00:00
echo ' <TR vAlign="bottom">' .
' <TD align="left">' .
' <FONT size="+2"><B>' . $pageName . '</B></FONT>' .
' </TD>' .
' <TD align="right">';
iconBar ($focused);
2000-05-08 02:39:55 +00:00
echo ' </TD>' .
' </TR>' .
' <TR>';
tableSpacer (1, 1, 2, "black");
2000-05-08 02:39:55 +00:00
echo ' </TR>' .
' <TR>';
tableSpacer (2, 1, 2, "white");
2000-05-08 02:39:55 +00:00
echo ' </TR>';
tableFooter ();
2000-05-08 02:39:55 +00:00
}
topBar ($pageName);
?>