You are here

function location_ctools_plugin_directory in Location 7.4

Same name and namespace in other branches
  1. 6.3 location.module \location_ctools_plugin_directory()
  2. 7.5 location.module \location_ctools_plugin_directory()
  3. 7.3 location.module \location_ctools_plugin_directory()

Implementation of hook_ctools_plugin_directory().

File

./location.module, line 274
Location module main routines. An implementation of a universal API for location manipulation. Provides functions for postal_code proximity searching, deep-linking into online mapping services. Currently, some options are configured through an…

Code

function location_ctools_plugin_directory($module, $plugin) {
  if ($module == 'ctools' && !empty($plugin)) {
    return 'plugins/' . $plugin;
  }
}