You are here

function _drupalchat_touch_user in DrupalChat 7.2

Same name and namespace in other branches
  1. 6.2 drupalchat.module \_drupalchat_touch_user()
  2. 6 drupalchat.module \_drupalchat_touch_user()
  3. 7 drupalchat.module \_drupalchat_touch_user()
1 call to _drupalchat_touch_user()
drupalchat_poll in ./drupalchat.module
Process and get messages

File

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

Code

function _drupalchat_touch_user($uid) {
  db_update('drupalchat_users')
    ->fields(array(
    'timestamp' => time(),
  ))
    ->condition('uid', $uid)
    ->condition('session', _drupalchat_get_sid())
    ->execute();
}