1.20.x drupal.inc drupal_deliver_page($page_callback_result, $default_delivery_callback = NULL)

Delivers a page callback result to the browser in the appropriate format.

Deprecated

since 1.0.0

See also

backdrop_deliver_page()

Related topics

File

includes/drupal.inc, line 739
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_deliver_page($page_callback_result, $default_delivery_callback = NULL) {
  backdrop_deliver_page($page_callback_result, $default_delivery_callback);
}