function _drupalchat_get_friends in DrupalChat 7
Same name and namespace in other branches
- 7.2 drupalchat.module \_drupalchat_get_friends()
1 call to _drupalchat_get_friends()
File
- ./
drupalchat.module, line 141 - Module code for DrupalChat.
Code
function _drupalchat_get_friends($uid) {
$friends = array();
//hook to filter friends
drupal_alter('drupalchat_get_friends', $friends, $uid);
return $friends;
}