You are here

function _panels_page_not_found in Panels 6.2

2 calls to _panels_page_not_found()
panels_page_prepare_fallback_render in panels_page/panels_page.module
Prepare the fallback router, update the menu cache with it, then load up our loader item and initiate fallback.
_panels_page_construct_argument_contexts in panels_page/panels_page.module
Extracts context data from provided URLs; helper function for _panels_page_master_loader().

File

panels_page/panels_page.module, line 373
panels_page.module

Code

function _panels_page_not_found(&$load) {
  $load->page_callback = 'drupal_not_found';
  $load->page_arguments = array();
  return FALSE;
}