You are here

function commerce_payment_commerce_checkout_page_info in Commerce Core 7

Implements hook_commerce_checkout_page_info().

File

modules/payment/commerce_payment.module, line 280
Defines the payment system and checkout integration.

Code

function commerce_payment_commerce_checkout_page_info() {
  $checkout_pages = array();
  $checkout_pages['payment'] = array(
    'title' => t('Payment'),
    'help' => t('Use the button below to proceed to the payment server.'),
    'status_cart' => FALSE,
    'locked' => TRUE,
    'buttons' => FALSE,
    'weight' => 20,
  );
  return $checkout_pages;
}