You are here

function _drupalchat_get_friends in DrupalChat 7.2

Same name and namespace in other branches
  1. 7 drupalchat.module \_drupalchat_get_friends()
1 call to _drupalchat_get_friends()
_drupalchat_get_user_details in ./drupalchat.module

File

./drupalchat.module, line 163
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;
}