You are here

function uc_recurring_user_fees in UC Recurring Payments and Subscriptions 7.2

Same name and namespace in other branches
  1. 6.2 uc_recurring.module \uc_recurring_user_fees()

Display users recurring fees.

1 string reference to 'uc_recurring_user_fees'
uc_recurring_menu in ./uc_recurring.module
Implements hook_menu().

File

./uc_recurring.module, line 290
Allows you to add a recurring fee to a product/SKU to handle subscription type services.

Code

function uc_recurring_user_fees($user) {
  return theme('uc_recurring_user_table', array(
    'uid' => $user->uid,
  ));
}