location_views_handler_field_latitude.inc in Location 6.3
Same filename and directory in other branches
Latitude field handler.
File
handlers/location_views_handler_field_latitude.incView source
<?php
/**
* @file
* Latitude field handler.
*/
class location_views_handler_field_latitude extends views_handler_field {
function option_definition() {
$options = parent::option_definition();
$options['style'] = array(
'default' => 'dms',
);
return $options;
}
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['style'] = array(
'#title' => t('Display style'),
'#type' => 'select',
'#options' => array(
'dd' => t('Decimal degrees'),
'dms' => t('Degrees, minutes, seconds'),
),
'#default_value' => $this->options['style'],
);
}
function render($values) {
if ($this->options['style'] == 'dd') {
return check_plain($values->{$this->field_alias});
}
else {
return theme('location_latitude_dms', $values->{$this->field_alias});
}
}
}
Classes
Name | Description |
---|---|
location_views_handler_field_latitude | @file Latitude field handler. |