You are here

function theme_search_result_location in Location 5.3

1 theme call to theme_search_result_location()
template_preprocess_search_results_location in contrib/location_search/location_search.module

File

contrib/location_search/location_search.module, line 374
Location search interface.

Code

function theme_search_result_location($result, $type) {
  $variables = array(
    'result' => $result,
    'type' => $type,
  );
  return _location_render('search_result_location', $variables, 'location_search');
}