function _drupal_bootstrap_variables

7.x bootstrap.inc _drupal_bootstrap_variables()

Loads system variables and all enabled bootstrap modules.

1 call to _drupal_bootstrap_variables()
drupal_bootstrap in drupal-7.x/includes/bootstrap.inc
Ensures Drupal is bootstrapped to the specified phase.

File

drupal-7.x/includes/bootstrap.inc, line 2470
Functions that need to be loaded on every Drupal request.

Code

function _drupal_bootstrap_variables() {
  global $conf;

  // Initialize the lock system.
  require_once DRUPAL_ROOT . '/' . variable_get('lock_inc', 'includes/lock.inc');
  lock_initialize();

  // Load variables from the database, but do not overwrite variables set in settings.php.
  $conf = variable_initialize(isset($conf) ? $conf : array());
  // Load bootstrap modules.
  require_once DRUPAL_ROOT . '/includes/module.inc';
  module_load_all(TRUE);
}