You are here

function commerce_paypal_ec_commerce_checkout_pane_info in Commerce PayPal 7.2

Implements hook_commerce_checkout_pane_info().

File

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

Code

function commerce_paypal_ec_commerce_checkout_pane_info() {
  $checkout_panes = array();
  $checkout_panes['paypal_ec_review'] = array(
    'title' => t('Review and confirm your order'),
    'name' => t('Express Checkout review and confirm (only to be used on the confirm order page)'),
    'file' => 'includes/commerce_paypal_ec.checkout_pane.inc',
    'base' => 'commerce_paypal_ec_review_pane',
    'page' => 'paypal_ec',
    'fieldset' => FALSE,
  );
  return $checkout_panes;
}