| 1 |
<?php |
<?php |
| 2 |
// $Id: blocks404.active.inc,v 1.2 2009/01/06 06:22:17 johnalbin Exp $ |
// $Id: blocks404.active.inc,v 1.3 2009/01/06 06:42:50 johnalbin Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* Helper function that performs the actual inclusion of the left and right regions. |
* Helper function that performs the actual inclusion of the left and right regions. |
| 8 |
// Render the left and right regions. |
// Render the left and right regions. |
| 9 |
$vars['left'] = theme('blocks', 'left') . $vars['left']; |
$vars['left'] = theme('blocks', 'left') . $vars['left']; |
| 10 |
$vars['right'] = theme('blocks', 'right') . $vars['right']; |
$vars['right'] = theme('blocks', 'right') . $vars['right']; |
| 11 |
|
|
| 12 |
|
// Add JS/CSS added by blocks. |
| 13 |
|
$vars['scripts'] = drupal_get_js(); |
| 14 |
|
$vars['styles'] = drupal_get_css(); |
| 15 |
|
|
| 16 |
blocks404_reset_body_classes($vars); |
blocks404_reset_body_classes($vars); |
| 17 |
} |
} |
| 18 |
|
|