function twitter_add_account in Twitter 6.2
1 string reference to 'twitter_add_account'
File
- ./
twitter.pages.inc, line 198
Code
function twitter_add_account($form_state, $account = NULL) {
if (empty($account)) {
global $user;
$account = $user;
}
$form['uid'] = array(
'#type' => 'value',
'#value' => $account->uid,
);
$form['screen_name'] = array(
'#type' => 'textfield',
'#required' => TRUE,
'#title' => t('Twitter user name'),
);
$form['password'] = array(
'#type' => 'password',
'#title' => t('Password'),
'#description' => t("If your Twitter account is protected, or you wish to post to Twitter from Drupal, you must enter the Twitter account's password."),
);
$form['import'] = array(
'#type' => 'checkbox',
'#title' => t('Import statuses from this account'),
'#default_value' => TRUE,
'#access' => FALSE,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Add account'),
);
return $form;
}