You are here

function uc_recurring_hosted_paypal_cancel_form in UC Recurring Payments and Subscriptions 7.2

Same name and namespace in other branches
  1. 6.2 modules/uc_recurring_hosted/uc_recurring_hosted.module \uc_recurring_hosted_paypal_cancel_form()

Display info on canceling the Paypal WPS subscription.

1 string reference to 'uc_recurring_hosted_paypal_cancel_form'
uc_recurring_hosted_recurring_info in modules/uc_recurring_hosted/uc_recurring_hosted.module
Implements hook_recurring_info().

File

modules/uc_recurring_hosted/uc_recurring_hosted.module, line 634
Provides hosted gateway specific code for recurring payments, specifically Authorize.net ARB and Paypal WPS

Code

function uc_recurring_hosted_paypal_cancel_form($form_state, $rfid) {
  $form['message'] = array(
    '#markup' => t('You can cancel your subscription from your paypal account, see <a href="@link">here</a> for instructions.', array(
      '@link' => 'https://www.paypal.com/webapps/helpcenter/article/?currentIssueID=59055&m=SRE',
    )),
  );
  return $form;
}