From 252c638b8028a86ba8cb5e315b3f13992b6fa77d Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Mon, 19 Apr 2010 23:08:18 -0700 Subject: moved gameinfo box (calls, comment-input, submit, games player by otheres) to the bottom of the page this should make it easier for people with a mobile phone. --- include/game.php | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) (limited to 'include/game.php') diff --git a/include/game.php b/include/game.php index aa25616..bd25e78 100644 --- a/include/game.php +++ b/include/game.php @@ -2095,41 +2095,51 @@ else echo "\n"; } -/* display rule set for this game */ +/* + * display gameinfo: re/contra, comment-box, play-card button, games played by others + */ + echo "
\n"; +/* get time from the last action of the game */ +$r = DB_query_array("SELECT mod_date from Game WHERE id='$gameid' " ); +$gameend = time() - strtotime($r[0]); + +/* comment box */ +if($gamestatus == 'play' || $gameend < 60*60*24*7) + { + echo ' '._('A short comment').":\n"; + } + +/* re-contra */ if($gamestatus == 'play' ) { $myparty = DB_get_party_by_hash($me); output_form_calls($me,$myparty); } -/* get time from the last action of the game */ -$r = DB_query_array("SELECT mod_date from Game WHERE id='$gameid' " ); -$gameend = time() - strtotime($r[0]); +/* play-card button */ if($gamestatus == 'play' || $gameend < 60*60*24*7) { - echo "
\n"._('A short comment').":\n"; + echo " \n"; } -echo "\n"; - /* has this hand been played by others? */ $other_game_ids = DB_played_by_others($gameid); if(sizeof($other_game_ids)>0 && $mystatus=='gameover') { $mypos = DB_get_pos_by_hash($me); - echo "

See how other played the same hand:
\n"; + echo "

See how other played the same hand: \n"; foreach($other_game_ids as $id) { $otherhash = DB_get_hash_from_game_and_pos($id,$mypos); $othername = DB_get_name('hash',$otherhash); - echo "$othername
"; + echo " $othername "; } - echo "

\n"; + echo "

\n"; } -echo "
\n"; +echo "\n"; /* end gameinfo */ echo "\n"; -- cgit v1.2.3-18-g5258