You are here

function location_views_field_handler_distance in Location 5

Same name and namespace in other branches
  1. 5.3 contrib/location_views/location_views.module \location_views_field_handler_distance()
1 string reference to 'location_views_field_handler_distance'
location_views_tables in contrib/location_views/location_views.module
For operation with the views.module.

File

contrib/location_views/location_views.module, line 921
Views-enables the location module.

Code

function location_views_field_handler_distance($fieldinfo, $fielddata, $value, $data) {
  return number_format(round($data->distance, 2), 2) . ' ' . $distance_unit;
}