| 1 |
<?php
|
| 2 |
// $Id: search-results.tpl.php,v 1.2 2008/10/13 12:31:42 dries Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* Default theme implementation for displaying search results.
|
| 7 |
*
|
| 8 |
* This template collects each invocation of theme_search_result(). This and
|
| 9 |
* the child template are dependent to one another sharing the markup for
|
| 10 |
* definition lists.
|
| 11 |
*
|
| 12 |
* Note that modules may implement their own search type and theme function
|
| 13 |
* completely bypassing this template.
|
| 14 |
*
|
| 15 |
* Available variables:
|
| 16 |
* - $search_results: All results as it is rendered through
|
| 17 |
* search-result.tpl.php
|
| 18 |
* - $type: The type of search, e.g., "node" or "user".
|
| 19 |
*
|
| 20 |
*
|
| 21 |
* @see template_preprocess_search_results()
|
| 22 |
*/
|
| 23 |
?>
|
| 24 |
<dl class="search-results <?php print $type; ?>-results">
|
| 25 |
<?php print $search_results; ?>
|
| 26 |
</dl>
|
| 27 |
<?php print $pager; ?>
|