| Versionen | |
|---|---|
| drupal6 – drupal7 | search_invoke_preprocess(&$text) |
Invokes hook_search_preprocess() in modules.
modules/
<?php
function search_invoke_preprocess(&$text) {
foreach (module_implements('search_preprocess') as $module) {
$text = module_invoke($module, 'search_preprocess', $text);
}
}
?>
Kommentare
Kommentar hinzufügen