Просмотр файла src/wml/roomEnter.php

Размер файла: 2.42Kb
<?php	
/*
* Harris WapChat
*
* http://www.successkid.com
*
* Harris WapChat is a wap chat application for personal and corporate used.
* Visit {@link http://www.successkid.com} for more info.
* Copyright (C) 2005 Harris Yusuf Arifin
* 
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* 
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
* 
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* @author		Harris Yusuf Arifin <[email protected]>
* @copyright	Copyright 2005, Harris Yusuf Arifin
*
* Please support this software by send DONATION to E-GOLD account :
* E-gold Number : 827550
* E-gold Name 	 : earthweb egold
*/


	include("$sysFileDir".FILE_HEAD_TYPE);
	include("$sysFileDir".FILE_HEADER_WML);
	
echo "<wml>\n";
echo "<card title=\"".$sesRoomName."\">\n";	
echo "<onevent type=\"ontimer\">\n";
if ($sesUserAgent=="2") {
	echo "<go href=\"".FILE_CENTER_POINT."?c=".CHOICE_CONVERSATION_GOTO_FORWARD."\"/>\n";
} else {	
	echo "<go href=\"".FILE_CENTER_POINT."?c=".CHOICE_CONVERSATION_REFRESH."\"/>\n";
}		
echo "</onevent>\n";
echo "<timer value=\"$sesRefreshTime\"/>";
echo "<p align=\"center\">\n";
echo "<b>".$txt_message."</b>";
echo "</p>\n";
if ($num > 0) { 
 if ($adTxt[1] == 0) {
 	echo "<p align=\"left\" mode=\"nowrap\">\n";
 } else {
 	echo "<p align=\"left\">\n";
 }
 	echo "<i><strong>".$adTxt[0]."</strong></i>";
	echo "</p>\n";
}
echo "<p align=\"left\" mode=\"wrap\">\n";

for ($i=0; $i<count($getMsg); $i++) {	
	echo parseMsg($sesUsername, $getMsg[$i]['USER_ID'], $getMsg[$i]['MESSAGE'],$getMsg[$i]['DEST_ID'])."<br/>";
}

$go = "<go href=\"".FILE_CENTER_POINT."?c=".CHOICE_ROOM_GOTO_WRITE."&amp;pub=1\"/>\n";	
navigate($txt_write,$txt_write,"accept",$go,$sesUserAgent);	

$go = "<go href=\"".FILE_CENTER_POINT."?c=".CHOICE_ROOM_GOTO_OPTIONS."\"/>\n";
navigate($txt_options,$txt_options,"accept",$go,$sesUserAgent);	

disableprev($sesUserAgent);

echo "</p>\n";
echo "</card>";
echo "</wml>\n";
?>