home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / drupal-6.0.exe / drupal-6.0 / modules / search / search-results.tpl.php < prev    next >
Encoding:
PHP Script  |  2007-10-31  |  817 b   |  28 lines

  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; ?>
  28.