You are here

getlocations_fields_handler_field_longitude.inc in Get Locations 7.2

getlocations_fields_handler_field_longitude.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Longitude field handler.

File

modules/getlocations_fields/handlers/getlocations_fields_handler_field_longitude.inc
View source
<?php

/**
 * @file getlocations_fields_handler_field_longitude.inc
 * @author Bob Hutchinson http://drupal.org/user/52366
 * @copyright GNU GPL
 *
 * Longitude field handler.
 */
class getlocations_fields_handler_field_longitude extends getlocations_fields_handler_field_latitude {
  function render($values) {
    if ($this->options['style'] == 'dms') {
      return theme('getlocations_longitude_dms', array(
        'longitude' => $values->{$this->field_alias},
      ));
    }
    return parent::render($values);
  }

}