You are here

function uc_recurring_permission in UC Recurring Payments and Subscriptions 7.2

Implements hook_permission().

File

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

Code

function uc_recurring_permission() {
  return array(
    'administer recurring fees' => array(
      'title' => t('administer recurring fees'),
      'description' => t('TODO Add a description for \'administer recurring fees\''),
    ),
    'view own recurring fees' => array(
      'title' => t('view own recurring fees'),
      'description' => t('TODO Add a description for \'view own recurring fees\''),
    ),
  );
}