_drupal_bootstrap_variables
- Versions
- 7
_drupal_bootstrap_variables()
Bootstrap variables: Load system variables and all enabled bootstrap modules.
Code
includes/bootstrap.inc, line 1632
<?php
function _drupal_bootstrap_variables() {
global $conf;
// 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);
}
?>Login or register to post comments 