function _panels_page_prepare_panels_render in Panels 6.2
1 call to _panels_page_prepare_panels_render()
- panels_page_prepare_panels_render in panels_page/
panels_page.render.inc - Load the $load object with all the necessary data for the current panels_page callback.
File
- panels_page/
panels_page.render.inc, line 32 - panels_page.render.inc Functions utilized during the panels_page render process. On any given page request, this file is lazy-loaded by panels_page itself only after it has been absolutely verified that a panels_page render should be done.
Code
function _panels_page_prepare_panels_render(&$panel_page) {
_panels_page_check_switchers($panel_page);
$panel_page->context = panels_context_load_contexts($panel_page, FALSE, $panel_page->context);
// The below does not make sense.
// $panel_page->context = panels_context_load_contexts($panel_page);
// If we're wrapping FAPI with with panel, this function gets the data.
$panel_page->form = panels_context_get_form($panel_page->context);
// Get any keywords (for title substitution in panes)
$panel_page->keywords = panels_context_get_keywords($panel_page->context);
// Figure out which display to use, then retrieve it into the current spot.
panels_page_fetch_display($panel_page, panels_argument_get_display($panel_page->arguments, $panel_page->context));
panels_page_set_current($panel_page);
}