search_preprocess

Definition

search_preprocess(&$text)
search/search.module, line 431

Description

Invokes hook_search_preprocess() in modules.

Code

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