You are here

function uc_authorizenet_form_alter in Ubercart 5

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

Implementation of hook_form_alter().

File

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

Code

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