comparison modules/search/search-results.tpl.php @ 1:c1f4ac30525a 6.0

Drupal 6.0
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:28:28 +0100
parents
children
comparison
equal deleted inserted replaced
0:5a113a1c4740 1:c1f4ac30525a
1 <?php
2 // $Id: search-results.tpl.php,v 1.1 2007/10/31 18:06:38 dries Exp $
3
4 /**
5 * @file search-results.tpl.php
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 dependant 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; ?>