You are here

function uc_authorizenet_form_alter in Ubercart 6.2

Same name and namespace in other branches
  1. 5 payment/uc_authorizenet/uc_authorizenet.module \uc_authorizenet_form_alter()

Implements hook_form_alter().

File

payment/uc_authorizenet/uc_authorizenet.module, line 221
Process payments using Authorize.net. Supports AIM and ARB.

Code

function uc_authorizenet_form_alter(&$form, $form_state, $form_id) {
  if ($form_id == 'uc_payment_gateways_form') {
    $form['#submit'][] = 'uc_authorizenet_payment_gateway_settings_submit';
  }
}