You are here

function services_ctools_plugin_api in Services 7.3

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

Implements of hook_ctools_plugin_api().

File

./services.module, line 287
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,
    );
  }
}