You are here

function workbench_workflows_ctools_plugin_directory in Workbench Moderation 7.2

Implementation of hook_ctools_plugin_directory() to let the system know we implement task and task_handler plugins.

File

modules/workbench_workflows/workbench_workflows.module, line 26
workbench_workflows.module

Code

function workbench_workflows_ctools_plugin_directory($module, $plugin) {

  // Most of this module is implemented as an export ui plugin, and the
  // rest is in ctools/includes/workbench_states.inc
  if ($module == 'ctools' && $plugin == 'export_ui') {
    return 'plugins/' . $plugin;
  }
}