function install_bootstrap_full

Performs a full bootstrap of Drupal during installation.

Parameters

$install_state: An array of information about the current installation state.

File

drupal/core/includes/install.core.inc, line 1498
API functions for installing Drupal.

Code

function install_bootstrap_full(&$install_state) {

  // Clear the module list that was overriden earlier in the process.
  // This will allow all freshly installed modules to be loaded.
  module_list_reset();
  drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
}