You are here

function scheduler_ctools_plugin_directory in Scheduler 7

Implements hook_ctools_plugin_directory().

File

./scheduler.module, line 896
Scheduler publishes and unpublishes nodes on dates specified by the user.

Code

function scheduler_ctools_plugin_directory($owner, $plugin_type) {

  // Declare a form pane (panels content type) for use in ctools and page
  // manager. This allows the Scheduler fieldset to be placed in a panel.
  if ($owner == 'ctools' && $plugin_type == 'content_types') {
    return 'plugins/content_types';
  }
}