function system_message($message, $chat_room_id, $recipient_id = -1, $file = null)
 {
     chat_system::send_message($message, $chat_room_id, -1, $recipient_id, $file);
 }
Exemplo n.º 2
0
*
* Released under the LGPL license (http://www.gnu.org/copyleft/lesser.html)
***********************************************************************************
*
* $Id$
*
***********************************************************************************/

require_once(LIMB_DIR . '/core/lib/session/session.class.php');
require_once(LIMB_DIR . '/core/model/chat/chat_user.class.php');
require_once(LIMB_DIR . '/core/model/chat/chat_system.class.php');

start_user_session();

if(!isset($_POST['recipient_id']) || !isset($_POST['message']))
	exit;

if(!$chat_user_data = chat_user :: get_chat_user_data())
	exit();

$file = ($_FILES['file']) ? ($_FILES['file']) : null;

chat_system :: send_message($_POST['message'], 
														$chat_user_data['chat_room_id'],
														$chat_user_data['id'],
														$_POST['recipient_id'], 
														$file);
?>
<script>
	top.send_message_finished();
</script>