drupal_maintenance_theme

Definition

drupal_maintenance_theme()
drupal/includes/bootstrap.inc, line 1190

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 offline mode. This also applies when the database fails.

@see _drupal_maintenance_theme()

Code

function drupal_maintenance_theme() {
  require_once DRUPAL_ROOT . '/includes/theme.maintenance.inc';
  _drupal_maintenance_theme();
}