function page_manager_ctools_plugin_directory

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

File

page_manager/page_manager.module, line 60

Code

function page_manager_ctools_plugin_directory($owner, $plugin_type) {
    if ($owner == 'page_manager') {
        return 'plugins/' . $plugin_type;
    }
    if ($owner == 'ctools' && $plugin_type == 'cache') {
        return 'plugins/' . $plugin_type;
    }
}