You are here

function twitter_user_categories in Twitter 7.3

Same name and namespace in other branches
  1. 7.4 twitter.module \twitter_user_categories()

Implements hook_user_categories().

File

./twitter.module, line 92
Provides API integration with the Twitter microblogging service.

Code

function twitter_user_categories() {
  return array(
    array(
      'name' => 'twitter',
      'title' => t('Twitter accounts'),
      'weight' => 3,
    ),
  );
}