comparison solr-search-results.tpl.php @ 0:a2b4f67e73dc default tip

initial
author Dirk Wintergruen <dwinter@mpiwg-berlin.mpg.de>
date Mon, 08 Jun 2015 10:21:54 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a2b4f67e73dc
1 <?php
2
3 /**
4 * @file
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 dependent 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 * - $module: The machine-readable name of the module (tab) being searched, such
18 * as "node" or "user".
19 *
20 *
21 * @see template_preprocess_search_results()
22 *
23 * @ingroup themeable
24 */
25 ?>
26 <div class="search-output">
27 <?php if ($search_results): ?>
28 <?php print $description; ?>
29 <h2><?php print t('search results for:'); ?></h2>
30 <?php if (isset($digitalobjects_items_select)):?>
31 <form method="GET" action="<?php print $digitalobjects_items_select ?>">
32 <?php endif;?>
33 <div id="toppager"><?php print $pager; ?></div>
34
35 <div class="items search-results <?php print $module; ?>-results">
36 <?php print $search_results; ?>
37 </div>
38
39 <div id="bottompager"><?php print $pager; ?></div>
40
41 <?php if (isset($digitalobjects_items_select)):?>
42 </form>
43 <?php endif;?>
44 <?php else : ?>
45 <h2><?php print t('Your search yielded no results');?></h2>
46 <?php print search_help('search#noresults', drupal_help_arg()); ?>
47 <?php endif; ?>
48 </div>