search-results-location.tpl.php in Location 7.4
Same filename and directory in other branches
search-results-location.tpl.php (copy of) Default theme implementation for displaying search results.
This file is only needed for Drupal 5 compatibility. In Drupal 6, the default implementation works fine.
1 theme call to search-results-location.tpl.php
- location_search_page in contrib/
location_search/ location_search.module - Implementation of hook_search_page(). (It's named location_search_page because the $type is 'location'.)
File
contrib/location_search/search-results-location.tpl.phpView source
<?php
/**
* @file search-results-location.tpl.php
* (copy of) Default theme implementation for displaying search results.
*
* This file is only needed for Drupal 5 compatibility. In Drupal 6, the default
* implementation works fine.
*/
?>
<dl class="search-results <?php
print $type;
?>-results">
<?php
print $search_results;
?>
</dl>
<?php
print $pager;