You are here

function commerce_paypal_checkout_commerce_checkout_pane_info in Commerce PayPal 7.2

Implements hook_commerce_checkout_pane_info().

File

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

Code

function commerce_paypal_checkout_commerce_checkout_pane_info() {
  $checkout_panes = array();
  $checkout_panes['paypal_checkout_review'] = array(
    'title' => t('Review and confirm your order'),
    'name' => t('PayPal Checkout review and confirm (only to be used on the confirm order page)'),
    'file' => 'includes/commerce_paypal_checkout.checkout_pane.inc',
    'base' => 'commerce_paypal_checkout_review_pane',
    'page' => 'paypal_checkout',
    'fieldset' => FALSE,
  );
  return $checkout_panes;
}