You are here

smart_ip_views_bridge_handler_field_city.inc in Smart IP 7.2

Contains the 'smart_ip_views_bridge_handler_field_city' field handler.

File

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

// $Id$

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

/**
 * Field handler to display visitor's city.
 */
class smart_ip_views_bridge_handler_field_city extends views_handler_field {
  function query() {
    $this->field_alias = 'smart_ip_views_bridge_city_' . $this->position;
    $this->query
      ->add_field('', 1, $this->field_alias);
  }
  function option_definition() {
    $options = parent::option_definition();
    return $options;
  }
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
  }
  function render($values) {
    $smart_ip_session = smart_ip_session_get('smart_ip');
    $city = '';
    if (!empty($smart_ip_session['location']['city'])) {
      $city = $smart_ip_session['location']['city'];
    }
    return $city;
  }

}

Classes

Namesort descending Description
smart_ip_views_bridge_handler_field_city Field handler to display visitor's city.