You are here

function services_client_ctools_plugin_type in Services Client 7

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

Implements hook_ctools_plugin_type().

File

./services_client.module, line 103
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_type() {
  return array(
    'condition' => array(
      'cache' => FALSE,
      'use hooks' => TRUE,
      'classes' => array(
        'handler',
      ),
    ),
    'mapping' => array(
      'cache' => FALSE,
      'use hooks' => TRUE,
      'classes' => array(
        'handler',
      ),
    ),
  );
}