/[drupal]/drupal/modules/search/search-results.tpl.php
ViewVC logotype

Contents of /drupal/modules/search/search-results.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Tue Dec 30 16:43:18 2008 UTC (10 months, 4 weeks ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-6, DRUPAL-7-0-UNSTABLE-7, DRUPAL-7-0-UNSTABLE-10, DRUPAL-7-0-UNSTABLE-4, DRUPAL-7-0-UNSTABLE-5, DRUPAL-7-0-UNSTABLE-8, DRUPAL-7-0-UNSTABLE-9, HEAD
Changes since 1.2: +2 -2 lines
File MIME type: text/x-php
- Patch #352470 by scor: fixed typos and grammar in comments.
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; ?>

  ViewVC Help
Powered by ViewVC 1.1.2