You are here

function drupalchat_user_logout in DrupalChat 7

Same name and namespace in other branches
  1. 8 drupalchat.module \drupalchat_user_logout()
  2. 7.2 drupalchat.module \drupalchat_user_logout()

File

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

Code

function drupalchat_user_logout($account) {
  if (variable_get('drupalchat_polling_method', DRUPALCHAT_AJAX) == DRUPALCHAT_COMMERCIAL) {
    setcookie("iflychat_key", "", time() - 3600, "/");
    setcookie("iflychat_css", "", time() - 3600, "/");
    setcookie("iflychat_time", "", time() - 3600, "/");
  }
}