function tweet_feed_settings_form in Tweet Feed 7.2
Same name and namespace in other branches
- 6 tweet_feed.module \tweet_feed_settings_form()
- 7.3 tweet_feed_admin.inc \tweet_feed_settings_form()
- 7 tweet_feed.module \tweet_feed_settings_form()
General Settings Form
A place to set up various global options for all tweet feeds
1 string reference to 'tweet_feed_settings_form'
- tweet_feed_menu in ./
tweet_feed.module - Implements hook_menu().
File
- ./
tweet_feed_admin.inc, line 500
Code
function tweet_feed_settings_form($form, &$form_state) {
$form['tweet_feed_get_tweeter_profiles'] = array(
'#type' => 'checkbox',
'#title' => t('Save user profile information for each unique tweeter in feeds.'),
'#description' => t('This will create a node record for every person who tweets in your feed.'),
'#default_value' => variable_get('tweet_feed_get_tweeter_profiles', 0),
);
return system_settings_form($form);
}