function _twitter_user_profile in Twitter 7.5
Same name and namespace in other branches
- 6.5 twitter.module \_twitter_user_profile()
- 7.6 twitter.module \_twitter_user_profile()
Helper to build a Twitter profile URL
2 calls to _twitter_user_profile()
- theme_twitter_user_accounts in ./
twitter.module - Default callback for theme('twitter_user_accounts');
- _twitter_account_list_row in ./
twitter.pages.inc - Returns the form fields to manage a Twitter account.
File
- ./
twitter.module, line 624 - Provides API integration with the Twitter microblogging service.
Code
function _twitter_user_profile($screen_name) {
return l('@' . $screen_name, TWITTER_HOST . '/' . $screen_name);
}