function ctools_context_handler_pre_render
Same name in this branch
- 7.x-1.x ctools.api.php \ctools_context_handler_pre_render()
Called to execute actions that should happen before a handler is rendered.
1 call to ctools_context_handler_pre_render()
- page_manager_http_response_render in page_manager/
plugins/ task_handlers/ http_response.inc
File
-
includes/
context-task-handler.inc, line 267
Code
function ctools_context_handler_pre_render($handler, $contexts, $args) {
foreach (module_implements('ctools_context_handler_pre_render') as $module) {
$function = $module . '_ctools_context_handler_pre_render';
$function($handler, $contexts, $args);
}
}