| drupal_rewrite_settings | includes/install.inc | Read settings.php into a buffer line by line, changing values specified in
$settings array, then over-writing the old settings.php file. |
| drupal_test_mysql | includes/install.mysql.inc | Check if we can connect to MySQL. |
| drupal_test_mysqli | includes/install.mysqli.inc | Check if we can connect to MySQL. |
| drupal_test_pgsql | includes/install.pgsql.inc | Check if we can connect to PostgreSQL. |
| drupal_verify_profile | includes/install.inc | Verify a profile for installation. |
| install_already_done_error | install.php | Show an error page when Drupal has already been installed. |
| install_change_settings | install.php | Configure and rewrite settings.php. |
| install_check_requirements | install.php | Page to check installation requirements and report any errors. |
| install_complete | install.php | Page displayed when the installation is complete. Called from install.php. |
| install_main | 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... |
| install_missing_modules_error | install.php | Show an error page when Drupal is missing required modules. |
| install_no_profile_error | install.php | Show an error page when there are no profiles available. |
| install_select_locale | install.php | Find all .po files for the current profile and allow admin to select which to use. |
| install_select_profile | install.php | Find all .profile files and allow admin to select which to install. |
| install_settings_form | install.php | Form API array definition for install_settings. |
| st | includes/install.inc | Hardcoded function for doing the equivalent of theme('placeholder')
when the theme system is not available. |
| _install_settings_form_validate | install.php | Helper function for install_settings_validate. |