You are here

function finder_ctools_plugin_api in Finder 7.2

Implements hook_ctools_plugin_api().

File

./finder.module, line 258
The finder module.

Code

function finder_ctools_plugin_api($module, $api) {
  if ($module == 'finder' && $api == 'finder_default') {
    return array(
      'version' => 2,
      'path' => drupal_get_path('module', 'finder') . '/plugins/finder_default',
    );
  }
}