function search_forms

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/search/search.module \search_forms()

Archivo

drupal-6.x/modules/search/search.module, line 1293
Enables site-wide keyword searching.

Código

function search_forms() {
  $forms['search_theme_form'] = array(
    'callback' => 'search_box',
    'callback arguments' => array('search_theme_form'),
  );
  $forms['search_block_form'] = array(
    'callback' => 'search_box',
    'callback arguments' => array('search_block_form'),
  );
  return $forms;
}