You are here

function _drupalchat_get_username in DrupalChat 6.2

4 calls to _drupalchat_get_username()
drupalchat_app_settings in ./drupalchat.admin.inc
@file Administrative functions to configure DrupalChat.
drupalchat_ex_auth in ./drupalchat.module
drupalchat_init in ./drupalchat.module
drupalchat_poll in ./drupalchat.module
Process and get messages

File

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

Code

function _drupalchat_get_username($uid) {
  $account = user_load($uid);
  return check_plain($account->name);
}