You are here

function location_views_province_handler in Location 5.3

Same name and namespace in other branches
  1. 5 contrib/location_views/location_views.module \location_views_province_handler()

Format a province name.

1 string reference to 'location_views_province_handler'
location_views_tables in contrib/location_views/location_views.module
Implementation of hook_views_tables().

File

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

Code

function location_views_province_handler($fieldinfo, $fielddata, $value, $data) {
  return location_province_name($data->location_country, $data->location_province);
}