You are here

function nodereference_ctools_plugin_directory in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 modules/nodereference/nodereference.module \nodereference_ctools_plugin_directory()

Implementaion of hook_ctools_plugin_directory().

File

modules/nodereference/nodereference.module, line 62
Defines a field type for referencing one node from another.

Code

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