function template_process_maintenance_page

template_process_maintenance_page(&$variables)

Theme process function for theme_maintenance_field().

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

maintenance-page.tpl.php

template_process_html()

File

includes/theme.inc, line 2912
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();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!theme.inc/function/template_process_maintenance_page/7.x