| 7 bootstrap.inc | _drupal_bootstrap_page_header() |
| 8 bootstrap.inc | _drupal_bootstrap_page_header() |
Invokes hook_boot(), initializes locking system, and sends HTTP headers.
1 call to _drupal_bootstrap_page_header()
File
- core/
includes/ bootstrap.inc, line 2302 - 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();
}
}
Login or register to post comments