| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * @file search-results.tpl.php 5 * Default theme implementation for displaying search results. 6 * 7 * This template collects each invocation of theme_search_result(). This and 8 * the child template are dependant to one another sharing the markup for 9 * definition lists. 10 * 11 * Note that modules may implement their own search type and theme function 12 * completely bypassing this template. 13 * 14 * Available variables: 15 * - $search_results: All results as it is rendered through 16 * search-result.tpl.php 17 * - $type: The type of search, e.g., "node" or "user". 18 * 19 * 20 * @see template_preprocess_search_results() 21 */ 22 ?> 23 <dl class="search-results <?php print $type; ?>-results"> 24 <?php print $search_results; ?> 25 </dl> 26 <?php print $pager; ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |