function _drupal_bootstrap_page_header

_drupal_bootstrap_page_header()

Invokes hook_boot(), initializes locking system, and sends HTTP headers.

File

includes/bootstrap.inc, line 2773
Functions that need to be loaded on every Drupal request.

Code

function _drupal_bootstrap_page_header() {
  bootstrap_invoke_all('boot');

  if (!drupal_is_cli()) {
    ob_start();
    drupal_page_header();
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!bootstrap.inc/function/_drupal_bootstrap_page_header/7.x