You are here

function uc_recurring_default_handler in UC Recurring Payments and Subscriptions 7.2

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

Default a recurring default handler, does nothing except returning TRUE.

1 string reference to 'uc_recurring_default_handler'
uc_recurring_recurring_info in ./uc_recurring.module
Implements hook_recurring_info().

File

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

Code

function uc_recurring_default_handler() {
  return TRUE;
}