| Versions | |
|---|---|
| 4.7 – 5 | theme_search_theme_form( |
| 6 | theme_search_theme_form() |
Theme the theme search form.
modules/
<?php
function theme_search_theme_form($form) {
return '<div id="search" class="container-inline">' . drupal_render($form) . '</div>';
}
?>