drupal_maintenance_theme
- Versions
- 4.7 – 7
drupal_maintenance_theme()
Enables use of the theme system without requiring database access. Since there is not database access no theme will be enabled and the default themeable functions will be called. Some themeable functions can not be used without the full Drupal API loaded. For example, theme_page() is unavailable and theme_maintenance_page() must be used in its place.
Code
includes/bootstrap.inc, line 845
<?php
function drupal_maintenance_theme() {
global $theme;
require_once './includes/path.inc';
require_once './includes/theme.inc';
require_once './includes/common.inc';
require_once './includes/unicode.inc';
unicode_check();
$theme = '';
}
?>Login or register to post comments 