You are here

function panels_everywhere_fallback_page in Panels Everywhere 6

1 call to panels_everywhere_fallback_page()
panels_everywhere_page_preprocess in ./panels_everywhere.module
Page preprocess to run the page content into our site template task.

File

./panels_everywhere.module, line 229
panels_everywhere.module

Code

function panels_everywhere_fallback_page(&$vars) {
  if (!panels_everywhere_should_override_theme()) {
    print theme('original page', $vars['content'], $vars['show_blocks'], $vars['show_messages']);

    // There's no easy way to short circuit the rest of our processing, and
    // this is a pretty rare case anyway, so just do it.
    module_invoke_all('exit');
    exit;
  }
}