Now all modules are in core modules folder

This commit is contained in:
Manuel Cillero 2017-08-08 12:14:45 +02:00
parent 5ba1cdfa0b
commit 05b6a91b0c
1907 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,37 @@
<?php
/**
* @file custom_search-results.tpl.php
* 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".
* - $filter: Rendered content types filter
* - $filter_positon: above/below/disabled
*
* @see template_preprocess_custom_search_results()
*/
?>
<?php if (isset($filter) && $filter != '' && $filter_position == 'above') { ?>
<div class="custom-search-filter">
<?php print $filter; ?>
</div>
<?php } ?>
<dl class="search-results <?php print $type; ?>-results">
<?php print $search_results; ?>
</dl>
<?php if (isset($filter) && $filter != '' && $filter_position == 'below') { ?>
<div class="custom-search-filter">
<?php print $filter; ?>
</div>
<?php } ?>
<?php print $pager; ?>