You are here

function commerce_paypal_checkout_commerce_checkout_page_info in Commerce PayPal 7.2

Implements hook_commerce_checkout_page_info().

File

modules/checkout/commerce_paypal_checkout.module, line 147
Implements PayPal Checkout in Drupal Commerce checkout.

Code

function commerce_paypal_checkout_commerce_checkout_page_info() {
  $checkout_pages = array();
  $checkout_pages['paypal_checkout'] = array(
    'title' => t('Confirm order'),
    'help' => t('Confirm your order information and use the button at the bottom of the page to finalize your payment.'),
    'status_cart' => FALSE,
    'locked' => TRUE,
    'buttons' => FALSE,
    'weight' => 30,
  );
  return $checkout_pages;
}