| Versionen | |
|---|---|
| drupal6 – drupal7 | template_preprocess_search_results(&$variables) |
Process variables for search-results.tpl.php.
The $variables array contains the following arguments:
modules/
<?php
function template_preprocess_search_results(&$variables) {
$variables['search_results'] = '';
foreach ($variables['results'] as $result) {
$variables['search_results'] .= theme('search_result', $result, $variables['type']);
}
$variables['pager'] = theme('pager', NULL, 10, 0);
// Provide alternate search results template.
$variables['template_files'][] = 'search-results-' . $variables['type'];
}
?>
Kommentare
Kommentar hinzufügen