You are here

geofieldProximityExposedFilter.inc in Geofield 7.2

Contains geofieldProximityExposedFilter.

File

views/proximity_plugins/geofieldProximityExposedFilter.inc
View source
<?php

/**
 * @file
 * Contains geofieldProximityExposedFilter.
 */
class geofieldProximityExposedFilter extends geofieldProximityBase implements geofieldProximityPluginInterface {
  public function getSourceValue($views_plugin) {
    $exposedFilter = $views_plugin->view->display_handler
      ->get_handler('filter', 'field_geofield_distance');
    if ($exposedFilter) {
      $filterProximityPlugin = geofield_proximity_load_plugin($exposedFilter->options['source']);
      return $filterProximityPlugin
        ->getSourceValue($exposedFilter);
    }
    return FALSE;
  }

}

Classes

Namesort descending Description
geofieldProximityExposedFilter @file Contains geofieldProximityExposedFilter.