You are here

function monitoring_test_ctools_plugin_api in Monitoring 7

Implements of hook_ctools_plugin_api().

File

test/monitoring_test.module, line 10
Monitoring test bootstrap file.

Code

function monitoring_test_ctools_plugin_api($module, $api) {
  if ($module == 'services' && $api == 'services') {
    return array(
      'version' => 3,
      'file' => 'monitoring_test.default_services.inc',
      'path' => drupal_get_path('module', 'monitoring_test'),
    );
  }
}