| Name | Location | Description |
|---|---|---|
| install_main | drupal/install.php | The Drupal installation happens in a series of steps. We begin by verifying that the current environment meets our minimum requirements. We then go on to verify that settings.php is properly configured. From there we connect to the configured database... |
| _db_error_page | drupal/includes/database/database.inc | Prints a themed maintenance page with the 'Site offline' text, adding the provided error message in the case of 'display_errors' set to on. Ends the page request; no return. |
| Name | Location | Description |
|---|---|---|
| language_default | drupal/includes/bootstrap.inc | Default language used on the site |
| language_initialize | drupal/includes/language.inc | Choose a language for the page, based on language negotiation settings. |
| variable_get | drupal/includes/bootstrap.inc | Return a persistent variable. |