You are here

function location_views_handler_field_longitude::render in Location 6.3

Same name and namespace in other branches
  1. 7.5 handlers/location_views_handler_field_longitude.inc \location_views_handler_field_longitude::render()
  2. 7.3 handlers/location_views_handler_field_longitude.inc \location_views_handler_field_longitude::render()
  3. 7.4 handlers/location_views_handler_field_longitude.inc \location_views_handler_field_longitude::render()

Overrides location_views_handler_field_latitude::render

File

handlers/location_views_handler_field_longitude.inc, line 10
Longitude field handler.

Class

location_views_handler_field_longitude
@file Longitude field handler.

Code

function render($values) {
  if ($this->options['style'] == 'dms') {
    return theme('location_longitude_dms', $values->{$this->field_alias});
  }
  return parent::render($values);
}