You are here

function search_api_location_map_views_api in Search API Location 7.2

Implements hook_views_api().

File

search_api_location_map/search_api_location_map.module, line 10
Provides location based search functionality to the Search API.

Code

function search_api_location_map_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'search_api_location_map') . '/views',
  );
}