You are here

function nat_ctools_plugin_directory in Node Auto Term [NAT] 7.2

Same name and namespace in other branches
  1. 7 nat.module \nat_ctools_plugin_directory()

Implementation of hook_ctools_plugin_directory().

File

./nat.module, line 306
NAT - node auto term - is a helper module that automatically creates a term using the same title as a node.

Code

function nat_ctools_plugin_directory($module, $plugin) {
  if ($module == 'ctools' && $plugin == 'relationships') {
    return 'includes/ctools/' . $plugin;
  }
}