From e6e6d5b0daf8fcdd9d23440cbea83c6b3bb8b3bf Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 17 May 2008 09:55:32 +0000 Subject: [PATCH] new menu items management added --- web/index_wr.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/web/index_wr.php b/web/index_wr.php index 1fa59e8..5de6478 100644 --- a/web/index_wr.php +++ b/web/index_wr.php @@ -116,6 +116,22 @@ else if ($user->stat == 'room') { log_wr($user->comm[$user->step % COMM_N]); $user->step_inc(); + } + else if ($argz[0] == 'roadmap') { + $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; "; + $user->comm[$user->step % COMM_N] .= show_notify(str_replace("\n", " ", $G_room_roadmap), 0, "torna ai tavoli", 400, 200); + + log_wr($user->comm[$user->step % COMM_N]); + $user->step_inc(); + + } + else if ($argz[0] == 'whysupport') { + $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; "; + $user->comm[$user->step % COMM_N] .= show_notify(str_replace("\n", " ", $G_room_whysupport), 0, "torna ai tavoli", 400, 200); + + log_wr($user->comm[$user->step % COMM_N]); + $user->step_inc(); + } else if ($argz[0] == 'chatt') { $room->chatt_send(&$user,$mesg); -- 2.17.1