|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/afglcweb/ny/modules/search/ |
Upload File : |
<?php // $Id: search-results.tpl.php,v 1.1 2007/10/31 18:06:38 dries Exp $ /** * @file search-results.tpl.php * Default theme implementation for displaying search results. * * This template collects each invocation of theme_search_result(). This and * the child template are dependant to one another sharing the markup for * definition lists. * * Note that modules may implement their own search type and theme function * completely bypassing this template. * * Available variables: * - $search_results: All results as it is rendered through * search-result.tpl.php * - $type: The type of search, e.g., "node" or "user". * * * @see template_preprocess_search_results() */ ?> <dl class="search-results <?php print $type; ?>-results"> <?php print $search_results; ?> </dl> <?php print $pager; ?>