source: sipes/cord/modules/search/search-results.tpl.php @ 8a8efa8

stableversion-3.0
Last change on this file since 8a8efa8 was b354002, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 748 octetos
Línea 
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; ?>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.