You are here

function theme_location in Location 5.3

Same name and namespace in other branches
  1. 5 location.theme \theme_location()
5 theme calls to theme_location()
location_cck_field_formatter in contrib/location_cck/location_cck.module
Implementation of hook_field_formatter().
location_update_index in contrib/location_search/location_search.module
Implementation of hook_update_index().
location_views_field_handler_address in contrib/location_views/location_views.module
Format complete address as a single field.
template_preprocess_locations in ./location.module
Theme preprocess function for theming a group of locations.
template_preprocess_search_result_location in contrib/location_search/location_search.module

File

./location.d5.inc, line 103
Drupal 5 specific routines.

Code

function theme_location($location = array(), $hide = array()) {
  $variables = array(
    'location' => $location,
    'hide' => $hide,
  );
  return _location_render('location', $variables);
}