You are here

function page_manager_get_task_handler in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 page_manager/page_manager.module \page_manager_get_task_handler()

Shortcut function to get a task handler plugin.

17 calls to page_manager_get_task_handler()
ctools_context_handler_get_render_handler in includes/context-task-handler.inc
Figure out which of the listed handlers should be used to render.
ctools_context_handler_render_handler in includes/context-task-handler.inc
Render a task handler.
page_manager_addressable_content in page_manager/page_manager.module
Implement pseudo-hook to fetch addressable content.
page_manager_get_handler_operations in page_manager/page_manager.admin.inc
Collect all the operations related to task handlers (variants) and build a menu.
page_manager_get_operations in page_manager/page_manager.admin.inc
Take the operations array from a task and expand it.

... See full list

File

page_manager/page_manager.module, line 906
The page manager module provides a UI and API to manage pages.

Code

function page_manager_get_task_handler($id) {
  ctools_include('plugins');
  return ctools_get_plugins('page_manager', 'task_handlers', $id);
}