You are here

function uc_recurring_subscription_theme in UC Recurring Payments and Subscriptions 7.2

Same name and namespace in other branches
  1. 6.2 modules/uc_recurring_subscription/uc_recurring_subscription.module \uc_recurring_subscription_theme()

Implements hook_theme().

File

modules/uc_recurring_subscription/uc_recurring_subscription.module, line 214
Manage subscription/memberships.

Code

function uc_recurring_subscription_theme() {
  return array(
    'uc_recurring_subscription_item' => array(
      'render element' => 'form',
    ),
    'uc_recurring_subscription_products' => array(
      'render element' => 'form',
    ),
    'uc_recurring_subscription_role_items' => array(
      'render element' => 'form',
    ),
    'uc_recurring_subscription_og_items' => array(
      'render element' => 'form',
    ),
  );
}