You are here

function theme_locations in Location 5.3

Same name and namespace in other branches
  1. 5 location.theme \theme_locations()
1 theme call to theme_locations()
location_display in ./location.module

File

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

Code

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