You are here

function twitter_field_extra_fields in Twitter 7.5

Implements hook_field_extra_fields().

File

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

Code

function twitter_field_extra_fields() {
  $extra['user']['user'] = array(
    'display' => array(
      'twitter' => array(
        'label' => t('Twitter'),
        'description' => t('Twitter account'),
        'weight' => 0,
      ),
    ),
  );
  return $extra;
}