You are here

function ip_geoloc_proximity_views_handlers in IP Geolocation Views & Maps 7

Returns meta info about each of the Geofield proximity views class.

File

views/ip_geoloc.views.inc, line 378
ip_geoloc.views.inc

Code

function ip_geoloc_proximity_views_handlers() {
  $handlers = array(
    'geocoder_with_HTML5' => array(
      'name' => t("Geocoded Location or visitor's current position"),
      'class' => 'geofieldProximityGeocoderWithHTML5',
      'module' => 'ip_geoloc',
      'path' => 'views/proximity_plugins',
    ),
  );
  return $handlers;
}