| 7 theme.inc | template_process_maintenance_page(&$variables) |
| 8 theme.inc | template_process_maintenance_page(&$variables) |
The variables array generated here is a mirror of template_process_html(). This processor will run its course when theme_maintenance_page() is invoked.
See also
File
- includes/
theme.inc, line 2688 - The theme system, which controls the output of Drupal.
Code
function template_process_maintenance_page(&$variables) {
$variables['head'] = drupal_get_html_head();
$variables['css'] = drupal_add_css();
$variables['styles'] = drupal_get_css();
$variables['scripts'] = drupal_get_js();
}
Login or register to post comments