function nat_ctools_plugin_directory in Node Auto Term [NAT] 7
Same name and namespace in other branches
- 7.2 nat.module \nat_ctools_plugin_directory()
Implementation of hook_ctools_plugin_directory().
File
- ./
nat.module, line 304 - 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;
}
}