You are here

function uc_paypal_wpp_settings_form in Ubercart 7.3

Same name and namespace in other branches
  1. 5 payment/uc_paypal/uc_paypal.module \uc_paypal_wpp_settings_form()
  2. 6.2 payment/uc_paypal/uc_paypal.module \uc_paypal_wpp_settings_form()

Settings for Website Payments Pro on the credit card gateways form.

This provides a subset of the Express Checkout settings.

1 string reference to 'uc_paypal_wpp_settings_form'
uc_paypal_uc_payment_gateway in payment/uc_paypal/uc_paypal.module
Implements hook_uc_payment_gateway().

File

payment/uc_paypal/uc_paypal.module, line 164
Integrates various PayPal payment services and Instant Payment Notifications (IPN) with Ubercart!

Code

function uc_paypal_wpp_settings_form($form, &$form_state) {
  $order = NULL;
  $form = uc_payment_method_paypal_ec('settings', $order);
  unset($form['ec']);
  return $form;
}