You are here

function smart_ip_views_bridge_openlayers_proximity_handler_filter_square::op_process in Smart IP 7.2

Same name and namespace in other branches
  1. 6.2 modules/smart_ip_views_bridge/views/smart_ip_views_bridge_openlayers_proximity_handler_filter_square.inc \smart_ip_views_bridge_openlayers_proximity_handler_filter_square::op_process()
  2. 6 modules/smart_ip_views_bridge/views/smart_ip_views_bridge_openlayers_proximity_handler_filter_square.inc \smart_ip_views_bridge_openlayers_proximity_handler_filter_square::op_process()

Process operator.

File

modules/smart_ip_views_bridge/views/smart_ip_views_bridge_openlayers_proximity_handler_filter_square.inc, line 8

Class

smart_ip_views_bridge_openlayers_proximity_handler_filter_square

Code

function op_process($op = 'simple', $field) {
  if (empty($this->table_alias)) {
    $this->table_alias = 'openlayers_proximity';
  }
  $token = $this->value['location'];
  smart_ip_views_bridge_substitute_token_value($this->value['location'], $token);
  parent::op_process($op, $field);
}