You are here

function _drupalchat_get_friends in DrupalChat 7

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

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;
}