comparison digitalobjects-items.tpl.php @ 0:6f6e07baad80 default tip

initial
author Dirk Wintergruen <dwinter@mpiwg-berlin.mpg.de>
date Tue, 02 Jun 2015 08:57:48 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6f6e07baad80
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 <?php if ($search_results): ?>
27 <!--<h2><?php print t('Search results');?></h2>-->
28 <?php print $pager; ?>
29 <ol class="items">
30 <?php print $search_results; ?>
31 </ol>
32 <?php print $pager; ?>
33 <?php else : ?>
34 <h2><?php print t('Your search yielded no results');?></h2>
35 <?php endif; ?>