| 7 bootstrap.inc | _drupal_bootstrap_variables() |
| 8 bootstrap.inc | _drupal_bootstrap_variables() |
Loads system variables and all enabled bootstrap modules.
1 call to _drupal_bootstrap_variables()
File
- includes/
bootstrap.inc, line 2383 - 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);
}
Login or register to post comments