You are here

function theme_fuzzysearch_form in Fuzzy Search 6

Output formatting for the search form

File

./fuzzysearch.module, line 577
Module file for fuzzysearch module.

Code

function theme_fuzzysearch_form($form) {
  $output = '<div class="search-form">' . drupal_render($form['keys']) . drupal_render($form['submit']) . '</div>';
  $output .= drupal_render($form);
  return $output;
}