theme_install_page

5 theme.inc theme_install_page($content)
6 theme.maintenance.inc theme_install_page($content)
7 theme.maintenance.inc theme_install_page($variables)
8 theme.maintenance.inc theme_install_page($variables)

Returns HTML for the installation page.

Note: this function is not themeable.

Parameters

$variables: An associative array containing:

  • content: The page content to show.

1 theme call to theme_install_page()

File

includes/theme.maintenance.inc, line 141
Theming for maintenance pages.

Code

function theme_install_page($variables) {
  drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');
  return theme('maintenance_page', $variables);
}
Login or register to post comments