You are here

function uc_recurring_perm in UC Recurring Payments and Subscriptions 6.2

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

Implementation of hook_perm().

File

./uc_recurring.module, line 165
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',
    'view own recurring fees',
  );
}