You are here

function commerce_sagepay_server_waiting_page in Drupal Commerce SagePay Integration 7

Outputs a temporary page before the SagePay form is submitted.

Displayed when there is a load delay or if the user has Javascript disabled.

1 string reference to 'commerce_sagepay_server_waiting_page'
commerce_sagepay_menu in ./commerce_sagepay.module
Implements hook_menu().

File

includes/commerce_sagepay_server.inc, line 220

Code

function commerce_sagepay_server_waiting_page() {
  print '<html><head><title></title></head><body><p>';
  print t('Please wait to be redirected to the payment page.');
  print '</p></body></html>';
}