function search_preprocess in Drupal 4
Same name and namespace in other branches
- 5 modules/search/search.module \search_preprocess()
 
Invokes hook_search_preprocess() in modules.
1 call to search_preprocess()
- search_simplify in modules/
search.module  - Simplifies a string according to indexing rules.
 
File
- modules/
search.module, line 427  - Enables site-wide keyword searching.
 
Code
function search_preprocess(&$text) {
  foreach (module_implements('search_preprocess') as $module) {
    $text = module_invoke($module, 'search_preprocess', $text);
  }
}