You are here

smart_ip_views_bridge_handler_field_coordinates.inc in Smart IP 7.2

Contains the 'smart_ip_views_bridge_handler_field_coordinates' field handler.

File

modules/smart_ip_views_bridge/views/smart_ip_views_bridge_handler_field_coordinates.inc
View source
<?php

// $Id$

/**
 * @file
 * Contains the 'smart_ip_views_bridge_handler_field_coordinates' field handler.
 */

/**
 * Field handler to display visitor's coordinates.
 */
class smart_ip_views_bridge_handler_field_coordinates extends views_handler_field {
  function query() {
    $this->field_alias = 'smart_ip_views_bridge_coordinates_' . $this->position;
    $this->query
      ->add_field('', 1, $this->field_alias);
  }
  function option_definition() {
    $options = parent::option_definition();
    $options['style'] = array(
      'default' => 'dd',
    );
    return $options;
  }
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['style'] = array(
      '#type' => 'select',
      '#title' => t('Display as'),
      '#default_value' => $this->options['style'],
      '#options' => array(
        'dd' => t('Decimal degrees format'),
        'dms' => t('Degrees, minutes, seconds format'),
      ),
    );
  }
  function render($values) {
    $smart_ip_session = smart_ip_session_get('smart_ip');
    $latitude = '';
    $longitude = '';
    if (!empty($smart_ip_session['location']['latitude']) && !empty($smart_ip_session['location']['longitude'])) {
      $latitude = $smart_ip_session['location']['latitude'];
      $longitude = $smart_ip_session['location']['longitude'];
    }
    if ($this->options['style'] == 'dd') {
      return "{$latitude}, {$longitude}";
    }
    else {
      return theme('smart_ip_longitude_dms', array(
        'view' => $latitude,
      )) . ', ' . theme('smart_ip_longitude_dms', array(
        'view' => $longitude,
      ));
    }
  }

}

Classes

Namesort descending Description
smart_ip_views_bridge_handler_field_coordinates Field handler to display visitor's coordinates.