function drupal_get_bootstrap_phase

7.x bootstrap.inc drupal_get_bootstrap_phase()

Returns the current bootstrap phase for this Drupal process.

The current phase is the one most recently completed by drupal_bootstrap().

See also

drupal_bootstrap()

4 calls to drupal_get_bootstrap_phase()
ajax_footer in drupal-7.x/includes/ajax.inc
Performs end-of-Ajax-request tasks.
drupal_exit in drupal-7.x/includes/common.inc
Performs end-of-request tasks.
drupal_get_complete_schema in drupal-7.x/includes/bootstrap.inc
Gets the whole database schema.
_drupal_log_error in drupal-7.x/includes/errors.inc
Logs a PHP error or exception and displays an error page in fatal cases.

File

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

Code

function drupal_get_bootstrap_phase() {
  return drupal_bootstrap();
}