web/drupal/modules/search/search-results.tpl.php
branchdrupal
changeset 74 0ff3ba646492
equal deleted inserted replaced
73:fcf75e232c5b 74:0ff3ba646492
       
     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; ?>