diff options
author | Arun Persaud <arun@nubati.net> | 2008-05-24 14:46:39 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-05-24 14:46:39 -0700 |
commit | 8141a807cda3a5387e3288e4d644cde94b9ab8fd (patch) | |
tree | 1228d536ae75379d65b09b782d6f4150c6bc270c /include/functions.php | |
parent | 95b72fab501b778555252b005ea8618a3305ad4c (diff) | |
download | e-DoKo-8141a807cda3a5387e3288e4d644cde94b9ab8fd.tar.gz e-DoKo-8141a807cda3a5387e3288e4d644cde94b9ab8fd.tar.bz2 e-DoKo-8141a807cda3a5387e3288e4d644cde94b9ab8fd.zip |
LAYOUT: rearranged the user menu to show up in the top right corner
also limited the amount of games that show up in the user menu if it is your turn
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/functions.php')
-rw-r--r-- | include/functions.php | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/include/functions.php b/include/functions.php index 5267bfb..31fc286 100644 --- a/include/functions.php +++ b/include/functions.php @@ -847,8 +847,7 @@ function display_table () function display_user_menu() { global $WIKI,$myid,$INDEX; - echo "<div class=\"usermenu\">\n". - "<a href=\"".$INDEX."\"> Go to my user page </a>"; + echo "<div class=\"usermenu\">\n"; $result = DB_query("SELECT Hand.hash,Hand.game_id,Game.player from Hand". " LEFT JOIN Game On Hand.game_id=Game.id". @@ -857,21 +856,20 @@ function display_user_menu() " AND Game.status<>'gameover'". " ORDER BY Game.session" ); if(DB_num_rows($result)) - echo "<hr />It's your turn in these games:<br />\n"; + echo "It's your turn in these games:<br />\n"; + $i=0; while( $r = DB_fetch_array($result)) { + $i++; echo "<a href=\"".$INDEX."?action=game&me=".$r[0]."\">game ".DB_format_gameid($r[1])." </a><br />\n"; + if($i>4) + { + echo "...<br />\n"; + break; + } } - echo "<hr /> <a href=\"".$INDEX."?action=new\">Start a new game</a>\n"; - - echo "<hr /> <a href=\"".$INDEX."?action=prefs\">Change settings</a>\n"; - - echo "<hr /> <a href=\"".$INDEX."?action=stats\">Statistics</a>\n"; - - echo - "<hr />Report bugs in the <a href=\"".$WIKI."\">wiki</a>\n"; echo "</div>\n"; return; } |