Version 1.5 (checked in on 2010/03/17 at 14:04:38 by dries)
API functions for installing Drupal.
| Name | Description |
|---|---|
| INSTALL_TASK_RUN_IF_NOT_COMPLETED | Global flag to indicate that a task should be run on each installation request that reaches it, until the database is set up and we are able to record the fact that it already ran. |
| INSTALL_TASK_RUN_IF_REACHED | Global flag to indicate that a task should be run on each installation request that reaches it. |
| INSTALL_TASK_SKIP | Global flag to indicate that a task should not be run during the current installation request. |
| Name | Description |
|---|---|
| install_already_done_error | Indicate that Drupal has already been installed. |
| install_begin_request | Begin an installation request, modifying the installation state as needed. |
| install_bootstrap_full | Installation task; perform a full bootstrap of Drupal. |
| install_check_requirements | Check installation requirements and report any errors. |
| install_configure_form | Installation task; configure settings for the new site. |
| install_configure_form_submit | Form API submit for the site configuration form. |
| install_configure_form_validate | Form API validate for the site configuration form. |
| install_database_errors | Check a database connection and return any errors. |
| install_display_output | Display themed installer output and end the page request. |
| install_drupal | Install Drupal either interactively or via an array of passed-in settings. |
| install_find_locales | Find all .po files for the current profile. |
| install_find_profiles | Find all .profile files. |
| install_finished | Installation task; perform final steps and display a 'finished' page. |
| install_full_redirect_url | Return the complete URL that should be redirected to during an installation request. |
| install_import_locales | Installation task; import languages via a batch process. |
| install_import_locales_remaining | Installation task; import remaining languages via a batch process. |
| install_load_profile | Installation task; load information about the chosen profile. |
| install_no_profile_error | Indicate that there are no profiles available. |
| install_profile_modules | Installation task; install required modules via a batch process. |
| install_redirect_url | Return the URL that should be redirected to during an installation request. |
| install_run_task | Run an individual installation task. |
| install_run_tasks | Run all tasks for the current installation request. |
| install_select_locale | Installation task; select which locale to use for the current profile. |
| install_select_locale_form | Form API array definition for language selection. |
| install_select_profile | Installation task; select which profile to install. |
| install_select_profile_form | Form API array definition for the profile selection form. |
| install_settings_form | Installation task; define a form to configure and rewrite settings.php. |
| install_settings_form_submit | Form API submit for install_settings form. |
| install_settings_form_validate | Form API validate for install_settings form. |
| install_state_defaults | Return an array of default settings for the global installation state. |
| install_system_module | Installation task; install the Drupal system module. |
| install_tasks | Return a list of all tasks the installer currently knows about. |
| install_tasks_to_display | Return a list of tasks that should be displayed to the end user. |
| install_tasks_to_perform | Return a list of tasks to perform during the current installation request. |
| install_verify_completed_task | Verify and return the last installation task that was completed. |
| install_verify_pdo | Verify PDO library. |
| install_verify_requirements | Installation task; verify the requirements for installing Drupal. |
| install_verify_settings | Verify existing settings.php |
| _install_configure_form | Form API array definition for site configuration. |
| _install_module_batch | Batch callback for batch installation of modules. |
| _install_select_profile | Helper function for automatically selecting an installation profile from a list or from a selection passed in via $_POST. |