| 1 search.module | search_forms() | 
Implements hook_forms().
File
- core/modules/ search/ search.module, line 1396 
- Enables site-wide keyword searching.
Code
function search_forms() {
  $forms['search_block_form'] = array(
    'callback' => 'search_box',
    'callback arguments' => array('search_block_form'),
  );
  return $forms;
}
