You are here

function services_ctools_plugin_api in Services 6.3

Same name and namespace in other branches
  1. 7.3 services.module \services_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

File

./services.module, line 77
Provides a generic but powerful API for web services.

Code

function services_ctools_plugin_api($module, $api) {
  if ($module == 'services' && $api == 'plugins') {
    return array(
      'version' => 3,
    );
  }
}