You are here

search_result_location.tpl.php in Location 7.3

Same filename and directory in other branches
  1. 7.5 contrib/location_search/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.

File

contrib/location_search/search_result_location.tpl.php
View source
<?php

/**
 * @file
 * 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>