public function twitter_pull_box::options_form in Twitter Pull 7
Same name and namespace in other branches
- 6.2 plugins/twitter_pull_box.inc \twitter_pull_box::options_form()
- 7.2 plugins/twitter_pull_box.inc \twitter_pull_box::options_form()
Implementation of boxes_box::options_form().
Overrides boxes_box::options_form
File
- plugins/
twitter_pull_box.inc, line 22
Class
- twitter_pull_box
- Simple custom text box.
Code
public function options_form(&$form_state) {
$form = array();
$form['search'] = array(
'#type' => 'textfield',
'#title' => t('Twitter search'),
'#required' => TRUE,
'#default_value' => $this->options['search'],
'#description' => t("The twitter user, hashtag, or search for the tweet to show in this box. Use a '@' for a user or a list, eg '@user', '@user/list'; a '#' for a hashtag, 'eg '#hashtag'; and no prefix for a search."),
);
$form['max_results'] = array(
'#type' => 'textfield',
'#title' => t('Max tweets'),
'#default_value' => $this->options['max_results'],
'#description' => t('How many tweets you want the box to display at any one time.'),
);
return $form;
}