theme_search_block_form

  1. drupal
    1. 4.7
    2. 5 search.module
    3. 6 theme.php
    4. 7 theme.php
Versions
4.7 – 5 theme_search_block_form($form)
6 theme_search_block_form()
7 theme_search_block_form($variables)

Theme the block search form.

Related topics

Code

modules/search.module, line 1062

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