function search_box in Drupal 6
Same name and namespace in other branches
- 4 modules/search.module \search_box()
- 5 modules/search/search.module \search_box()
- 7 modules/search/search.module \search_box()
Form builder; Output a search form for the search block and the theme's search box.
See also
Related topics
1 string reference to 'search_box'
- search_forms in modules/
search/ search.module
File
- modules/
search/ search.module, line 1063 - Enables site-wide keyword searching.
Code
function search_box(&$form_state, $form_id) {
$form[$form_id] = array(
'#title' => t('Search this site'),
'#type' => 'textfield',
'#size' => 15,
'#default_value' => '',
'#attributes' => array(
'title' => t('Enter the terms you wish to search for.'),
),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Search'),
);
$form['#submit'][] = 'search_box_form_submit';
return $form;
}