1 bootstrap.inc _backdrop_bootstrap_page_header()

Invokes hook_boot() and sends HTTP headers.

File

core/includes/bootstrap.inc, line 3235
Functions that need to be loaded on every Backdrop request.

Code

function _backdrop_bootstrap_page_header() {
  // Load all bootstrap modules.
  require_once BACKDROP_ROOT . '/core/includes/module.inc';
  module_load_all(TRUE);

  bootstrap_invoke_all('boot');

  if (!backdrop_is_cli()) {
    ob_start();
    backdrop_page_header();
  }
}