You are here

function party_user_ctools_plugin_directory in Party 7

Same name and namespace in other branches
  1. 8.2 modules/party_user/party_user.module \party_user_ctools_plugin_directory()

Implements hook_ctools_plugin_directory().

File

modules/party_user/party_user.module, line 103
Support for linking users to parties

Code

function party_user_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'ctools' && $plugin_type == 'relationships') {
    return "plugins/{$plugin_type}";
  }
}