You are here

function _blocks404_preprocess_page in 404 Blocks 5

Helper function that performs the actual inclusion of the left and right regions.

1 call to _blocks404_preprocess_page()
blocks404_preprocess_page in ./blocks404.module
Renders the left and right regions and resets the body classes on 404 pages.

File

./blocks404.active.inc, line 5

Code

function _blocks404_preprocess_page(&$vars) {

  // Render the left and right regions.
  $vars['left'] = theme('blocks', 'left') . $vars['left'];
  $vars['right'] = theme('blocks', 'right') . $vars['right'];
  blocks404_reset_body_classes($vars);
}