search-result-location.tpl.php in Location 5.3
Same filename and directory in other branches
search-result-location.tpl.php Theme a location search result.
Available variables:
- $links: A themed set of links to all the objects that reference this location.
- $location: A themed location.
1 theme call to search-result-location.tpl.php
- template_preprocess_search_results_location in contrib/
location_search/ location_search.module
File
contrib/location_search/search-result-location.tpl.phpView source
<?php
/**
* @file search-result-location.tpl.php
* Theme a location search result.
*
* Available variables:
* - $links: A themed set of links to all the objects that reference this location.
* - $location: A themed location.
*/
?>
<dt class="title">
<?php
print $links;
?>
</dt>
<dd>
<?php
print $location;
?>
</dd>