You are here

function page_manager_ctools_plugin_type in Chaos Tool Suite (ctools) 7

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
The page manager module provides a UI and API to manage pages.

Code

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