You are here

function clients_ctools_plugin_directory in Web Service Clients 7.3

Implements hook_ctools_plugin_directory().

File

./clients.module, line 498
Clients module provides a UI, storage, and an API for handling connections to remote webservices, including those provided by Services module on other Drupal sites.

Code

function clients_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'clients') {
    return "plugins/{$plugin_type}";
  }
}