You are here

function workbench_moderation_ctools_plugin_directory in Workbench Moderation 7.3

Same name and namespace in other branches
  1. 7 workbench_moderation.module \workbench_moderation_ctools_plugin_directory()

Implements hook_ctools_plugin_directory() to let the system know where our task and task_handler plugins are.

File

./workbench_moderation.module, line 2283
Content moderation for Workbench.

Code

function workbench_moderation_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'page_manager') {
    return 'plugins/page_manager/' . $plugin_type;
  }
}