function page_manager_ctools_plugin_type

Implements hook_ctools_plugin_type() to inform the plugin system that Page Manager owns task, task_handler, and page_wizard plugin types.

All of these are empty because the defaults all work.

File

page_manager/page_manager.module, line 75

Code

function page_manager_ctools_plugin_type() {
    return array(
        'tasks' => array(),
        'task_handlers' => array(),
        'page_wizards' => array(),
    );
}