theme_search_theme_form

Definition

theme_search_theme_form($form)
drupal/modules/search/search.module, line 1071

Description

Theme the theme search form.

Related topics

Namesort iconDescription
Search interfaceThe Drupal search interface manages a global search mechanism.

Code

function theme_search_theme_form($form) {
  return '<div id="search" class="container-inline">'. drupal_render($form) .'</div>';
}