theme_search_theme_form($form)
search/search.module, line 1060
Theme the theme search form.
| Name | Description |
|---|---|
| Search interface | The Drupal search interface manages a global search mechanism. |
<?php
function theme_search_theme_form($form) {
return '<div id="search" class="container-inline">'. drupal_render($form) .'</div>';
}
?>