function _twitter_account_fields in Twitter 6.2
File
- ./
twitter.inc, line 542 - A wrapper API for the Twitter microblogging service.
Code
function _twitter_account_fields($user, $account = array()) {
$form['uid'] = array(
'#type' => 'value',
'#value' => $user->uid,
);
$form['screen_name'] = array(
'#type' => 'textfield',
'#required' => TRUE,
'#title' => t('Twitter user name'),
'#default_value' => $twitter['screen_name'],
);
$form['password'] = array(
'#type' => 'password',
'#required' => TRUE,
'#title' => t('Password'),
'#default_value' => $twitter['password'],
);
return $form;
}