You are here

function uc_authorizenet_arb_user_cancel_form_submit in Ubercart 6.2

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

File

payment/uc_authorizenet/uc_authorizenet.pages.inc, line 163
Includes page callbacks for Authorize.Net's Silent POST feature and user specific recurring fee operation pages.

Code

function uc_authorizenet_arb_user_cancel_form_submit($form, &$form_state) {
  $fee = uc_recurring_fee_load('user', $form_state['values']['rfid']);
  $result = uc_authorizenet_arb_cancel($fee['data'], $fee['order_id'], $fee);

  // If the cancellation was successful...
  if ($result) {
    drupal_set_message(t('The recurring fee has been canceled.'));

    // Set the fee's recurring charges to 0.
    uc_recurring_fee_cancel($fee['rfid']);
  }
  else {
    drupal_set_message(t('An error has occurred. Please try again and contact us if the problem persists.'), 'error');
  }
  $form_state['redirect'] = 'user/' . $form_state['values']['uid'];
}