You are here

function uc_recurring_perm in UC Recurring Payments and Subscriptions 6

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

Implementation of hook_perm().

File

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

Code

function uc_recurring_perm() {
  return array(
    'administer recurring fees',
  );
}