You are here

function services_client_ctools_plugin_type in Services Client 7.2

Same name and namespace in other branches
  1. 7 services_client.module \services_client_ctools_plugin_type()

Implements hook_ctools_plugin_type().

File

./services_client.plugins.inc, line 11
Ctools plugin related functions

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',
      ),
    ),
    'event_handler' => array(
      'cache' => FALSE,
      'use hooks' => TRUE,
      'classes' => array(
        'handler',
      ),
    ),
  );
}