class location_views_handler_field_longitude in Location 6.3
Same name and namespace in other branches
- 7.5 handlers/location_views_handler_field_longitude.inc \location_views_handler_field_longitude
- 7.3 handlers/location_views_handler_field_longitude.inc \location_views_handler_field_longitude
- 7.4 handlers/location_views_handler_field_longitude.inc \location_views_handler_field_longitude
@file Longitude field handler.
Hierarchy
- class \location_views_handler_field_latitude extends \views_handler_field
Expanded class hierarchy of location_views_handler_field_longitude
1 string reference to 'location_views_handler_field_longitude'
- location_views_data in ./
location.views.inc - Implementation of hook_views_data().
File
- handlers/
location_views_handler_field_longitude.inc, line 8 - Longitude field handler.
View source
class location_views_handler_field_longitude extends location_views_handler_field_latitude {
function render($values) {
if ($this->options['style'] == 'dms') {
return theme('location_longitude_dms', $values->{$this->field_alias});
}
return parent::render($values);
}
}