You are here

function uc_recurring_theme in UC Recurring Payments and Subscriptions 6.2

Same name and namespace in other branches
  1. 7.2 uc_recurring.module \uc_recurring_theme()

Implementation of hook_theme().

File

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

Code

function uc_recurring_theme() {
  return array(
    'uc_recurring_user_table' => array(
      'arguments' => array(
        'uid' => NULL,
      ),
    ),
    'uc_recurring_admin_table' => array(
      'arguments' => array(
        'fees' => NULL,
      ),
    ),
  );
}