| Versions | |
|---|---|
| 4.7 – 5 | theme_search_block_form( |
| 6 | theme_search_block_form() |
| 7 | theme_search_block_form($variables) |
Theme the block search form.
modules/
<?php
function theme_search_block_form($form) {
return '<div class="container-inline">' . form_render($form) . '</div>';
}
?>