You are here

function uc_recurring_perm in Ubercart 5

Implementation of hook_perm().

File

payment/uc_recurring/uc_recurring.module, line 89
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',
  );
}