function drupalchat_compute_guest_session in DrupalChat 7
2 calls to drupalchat_compute_guest_session()
File
- ./
drupalchat.module, line 1481 - Module code for DrupalChat.
Code
function drupalchat_compute_guest_session($id) {
return md5(substr(variable_get('drupalchat_external_api_key', NULL), 0, 5) . $id);
}