You are here

function autodialog_page_delivery_callback_alter in Auto-Dialog 7

Implements hook_page_delivery_callback_alter().

File

./autodialog.module, line 24

Code

function autodialog_page_delivery_callback_alter(&$callback) {
  if (_autodialog_check_request() && $callback == 'drupal_deliver_html_page') {
    $callback = 'autodialog_deliver';
  }
}