_drupal_bootstrap_configuration
function _drupal_bootstrap_configuration
_drupal_bootstrap_configuration()
Sets up the script environment and loads settings.php.
File
- includes/bootstrap.inc, line 2610
- Functions that need to be loaded on every Drupal request.
Code
function _drupal_bootstrap_configuration() { // Set the Drupal custom error handler. set_error_handler('_drupal_error_handler'); set_exception_handler('_drupal_exception_handler'); drupal_environment_initialize(); // Start a page timer: timer_start('page'); // Initialize the configuration, including variables from settings.php. drupal_settings_initialize(); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2