- #44850: Allow search_box() to be used for non-node searches too
parent
15590cdc06
commit
9639b7dc56
|
@ -1206,13 +1206,19 @@ function system_theme_settings($key = '') {
|
|||
|
||||
}
|
||||
|
||||
function search_box() {
|
||||
$form['#action'] = url('search');
|
||||
/**
|
||||
* Output a search form.
|
||||
*/
|
||||
function search_box($path = NULL) {
|
||||
$form['#action'] = is_null($path) ? url('search') : url($path);
|
||||
$form['keys'] = array('#type' => 'textfield', '#size'=> 15, '#value' => '', '#attributes' => array('alt' => t('Enter the terms you wish to search for.')));
|
||||
$form['submit'] = array('#type' => 'submit', '#value' => t('Search'));
|
||||
return drupal_get_form('search_box', $form);
|
||||
}
|
||||
|
||||
/**
|
||||
* Theme a search form.
|
||||
*/
|
||||
function theme_search_box($form) {
|
||||
$output = '<div id="search" class="container-inline">';
|
||||
$output .= form_render($form);
|
||||
|
|
|
@ -1206,13 +1206,19 @@ function system_theme_settings($key = '') {
|
|||
|
||||
}
|
||||
|
||||
function search_box() {
|
||||
$form['#action'] = url('search');
|
||||
/**
|
||||
* Output a search form.
|
||||
*/
|
||||
function search_box($path = NULL) {
|
||||
$form['#action'] = is_null($path) ? url('search') : url($path);
|
||||
$form['keys'] = array('#type' => 'textfield', '#size'=> 15, '#value' => '', '#attributes' => array('alt' => t('Enter the terms you wish to search for.')));
|
||||
$form['submit'] = array('#type' => 'submit', '#value' => t('Search'));
|
||||
return drupal_get_form('search_box', $form);
|
||||
}
|
||||
|
||||
/**
|
||||
* Theme a search form.
|
||||
*/
|
||||
function theme_search_box($form) {
|
||||
$output = '<div id="search" class="container-inline">';
|
||||
$output .= form_render($form);
|
||||
|
|
Loading…
Reference in New Issue