Community Documentation

_drupal_bootstrap_page_header

7 bootstrap.inc _drupal_bootstrap_page_header()
8 bootstrap.inc _drupal_bootstrap_page_header()

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

File

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

Code

<?php
function _drupal_bootstrap_page_header() {
  bootstrap_invoke_all('boot');

  if (!drupal_is_cli()) {
    ob_start();
    drupal_page_header();
  }
}
?>
Login or register to post comments