You are here

function twitter_get_user_accounts in Twitter 6.2

Same name and namespace in other branches
  1. 6.3 twitter.module \twitter_get_user_accounts()
  2. 6.4 twitter.module \twitter_get_user_accounts()

User/account relationship code

2 calls to twitter_get_user_accounts()
twitter_form in ./twitter.inc
Generate a twitter posting form for the given user.
twitter_nodeapi in ./twitter.module
Implementation of hook_nodeapi().

File

./twitter.inc, line 434
A wrapper API for the Twitter microblogging service.

Code

function twitter_get_user_accounts($uid, $full_access = FALSE) {
  $drupal_user = user_load($uid);
  return module_invoke_all('twitter_accounts', $drupal_user, $full_access);
}