You are here

function search_api_location_ctools_plugin_directory in Search API Location 7.2

Implements hook_ctools_plugin_dierctory().

File

./search_api_location.module, line 89
Provides location based search functionality for the Search API.

Code

function search_api_location_ctools_plugin_directory($module, $plugin) {
  if ($module == 'search_api_location') {
    return 'plugins/' . $plugin;
  }
}