You are here

function content_ctools_plugin_directory in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 content.module \content_ctools_plugin_directory()

Implementation of hook_ctools_plugin_directory().

File

./content.module, line 226
Allows administrators to associate custom fields to content types.

Code

function content_ctools_plugin_directory($module, $plugin) {
  if ($module == 'ctools' && $plugin == 'content_types') {
    return 'includes/panels/' . $plugin;
  }
}