You are here

function drupalchat_user in DrupalChat 6

Same name and namespace in other branches
  1. 6.2 drupalchat.module \drupalchat_user()

Implementation of hook_user()

File

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

Code

function drupalchat_user($op, &$edit, &$account, $category = NULL) {
  switch ($op) {
    case 'login':
      db_query('DELETE FROM {drupalchat_msg} WHERE uid1 = uid2 AND uid1 = %d', $account->uid);
      break;
  }
}