| 5 search.module | search_preprocess(&$text) |
Invokes hook_search_preprocess() in modules.
1 call to search_preprocess()
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);
}
}
Login or register to post comments