You are here

function drupalchat_send in DrupalChat 6

Same name and namespace in other branches
  1. 6.2 drupalchat.module \drupalchat_send()
  2. 7.2 drupalchat.module \drupalchat_send()
  3. 7 drupalchat.module \drupalchat_send()

Send messages via ajax

1 string reference to 'drupalchat_send'
drupalchat_menu in ./drupalchat.module
Implementaiton of hook_menu()

File

./drupalchat.module, line 223
Module code for DrupalChat.

Code

function drupalchat_send() {
  global $user;
  $message = (object) array(
    'uid1' => $user->uid,
    'uid2' => check_plain($_POST['drupalchat_uid2']),
    'message' => check_plain($_POST['drupalchat_message']),
    'timestamp' => time(),
  );
  drupal_write_record('drupalchat_msg', $message);
  drupal_json(array());
}