You are here

function commerce_paypal_ec_commerce_checkout_page_info in Commerce PayPal 7.2

Implements hook_commerce_checkout_page_info().

File

modules/ec/commerce_paypal_ec.module, line 137
Implements PayPal Express Checkout in Drupal Commerce checkout.

Code

function commerce_paypal_ec_commerce_checkout_page_info() {
  $checkout_pages = array();
  $checkout_pages['paypal_ec'] = 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;
}