function search_forms
Same name and namespace in other branches
- 6.x drupal-6.x/modules/search/search.module \search_forms()
Implements hook_forms().
Archivo
- drupal-7.x/
modules/ search/ search.module, line 1349 - Enables site-wide keyword searching.
Código
function search_forms() {
$forms['search_block_form'] = array(
'callback' => 'search_box',
'callback arguments' => array('search_block_form'),
);
return $forms;
}