function theme_install_page
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()
- install_display_output in includes/
install.core.inc - Displays themed installer output and ends the page request.
File
-
includes/
theme.maintenance.inc, line 141
Code
function theme_install_page($variables) {
drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');
return theme('maintenance_page', $variables);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.