You are here

function services_client_ctools_plugin_directory in Services Client 7

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

Implements hook_ctools_plugin_directory().

File

./services_client.module, line 62
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_directory($owner, $plugin_type) {
  if ($owner == 'ctools' && $plugin_type == 'export_ui') {
    return 'plugins/' . $plugin_type;
  }
}