You are here

function theme_search_results_location in Location 5.3

1 theme call to theme_search_results_location()
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/location_search.module, line 369
Location search interface.

Code

function theme_search_results_location($results, $type) {
  $variables = array(
    'results' => $results,
    'type' => $type,
  );
  return _location_render('search_results_location', $variables, 'location_search');
}