You are here

function uc_recurring_product_settings_form in UC Recurring Payments and Subscriptions 7.2

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

Adds the settings for the recurring module on the feature settings form.

1 string reference to 'uc_recurring_product_settings_form'
uc_recurring_product_uc_product_feature in modules/uc_recurring_product/uc_recurring_product.module
Implements hook_uc_product_feature().

File

modules/uc_recurring_product/uc_recurring_product.module, line 355
Add recurring payments/fees to a product. This is imlpemented through Ubercarts product features.

Code

function uc_recurring_product_settings_form($form, &$form_state) {
  $form['message'] = array(
    '#value' => '<p>' . t('Settings for recurring payments can now be found under the <a href="@settings">Payment Settings</a>', array(
      '@settings' => url('admin/store/settings/payment/edit/recurring'),
    )) . '</p>',
  );
  return $form;
}