You are here

function search_preprocess in Drupal 5

Same name and namespace in other branches
  1. 4 modules/search.module \search_preprocess()

Invokes hook_search_preprocess() in modules.

1 call to search_preprocess()
search_simplify in modules/search/search.module
Simplifies a string according to indexing rules.

File

modules/search/search.module, line 431
Enables site-wide keyword searching.

Code

function search_preprocess(&$text) {
  foreach (module_implements('search_preprocess') as $module) {
    $text = module_invoke($module, 'search_preprocess', $text);
  }
}