You are here

function trumba_ctools_plugin_directory in Trumba 7

Implements hook_ctools_plugin_directory().

File

./trumba.module, line 50
Put Trumba spuds everywhere!

Code

function trumba_ctools_plugin_directory($owner, $plugin_type) {

  // Let the system know we implement task and task_handler plugins.
  if ($owner == 'ctools' && $plugin_type == 'content_types') {
    return 'plugins/' . $plugin_type;
  }
}