function context_page_delivery_callback_alter in Context 7.3
Implementation of hook_delivery_callback_alter(). Based on menu_position's and menu_trail_by_path's implementations.
File
- ./
context.core.inc, line 385
Code
function context_page_delivery_callback_alter() {
if ($plugin = context_get_plugin('reaction', 'menu')) {
$plugin
->execute();
}
if ($plugin = context_get_plugin('reaction', 'breadcrumb')) {
$plugin
->execute();
}
}