You are here

function services_client_ctools_plugin_api in Services Client 7

Same name and namespace in other branches
  1. 7.2 services_client.plugins.inc \services_client_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./services_client.module, line 53
Services client module allows to push different types of objects on different types of events such as node_save, user_save to remote masters.

Code

function services_client_ctools_plugin_api($owner, $api) {
  if ($owner == 'services_client' && in_array($api, array(
    'mapping',
    'condition',
  ))) {
    return array(
      'version' => 1,
    );
  }
}