function _drupalchat_touch_user in DrupalChat 7
Same name and namespace in other branches
- 6.2 drupalchat.module \_drupalchat_touch_user()
- 6 drupalchat.module \_drupalchat_touch_user()
- 7.2 drupalchat.module \_drupalchat_touch_user()
1 call to _drupalchat_touch_user()
- drupalchat_poll in ./
drupalchat.module - Process and get messages
File
- ./
drupalchat.module, line 712 - 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();
}