drupal_maintenance_theme
Definition
drupal_maintenance_theme()
includes/bootstrap.inc, line 1043
Description
Enables use of the theme system without requiring database access.
Loads and initializes the theme system for site installs, updates and when the site is in off-line mode. This also applies when the database fails.
See also
Code
<?php
function drupal_maintenance_theme() {
require_once './includes/theme.maintenance.inc';
_drupal_maintenance_theme();
}
?> 