Same name and namespace in other branches
  1. 5.x modules/search/search.module \theme_search_block_form()
  2. 6.x developer/theme.php \theme_search_block_form()

Theme the block search form.

Related topics

File

modules/search.module, line 1061
Enables site-wide keyword searching.

Code

function theme_search_block_form($form) {
  return '<div class="container-inline">' . form_render($form) . '</div>';
}