You are here

function uc_product_kit_theme in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 uc_product_kit/uc_product_kit.module \uc_product_kit_theme()
  2. 6.2 uc_product_kit/uc_product_kit.module \uc_product_kit_theme()

Implements hook_theme().

File

uc_product_kit/uc_product_kit.module, line 407
The product kit module for Ubercart.

Code

function uc_product_kit_theme() {
  return array(
    'uc_product_kit_items_form' => array(
      'render element' => 'form',
      'file' => 'uc_product_kit.theme.inc',
    ),
    'uc_product_kit_add_to_cart' => array(
      'variables' => array(
        'form' => NULL,
        'view_mode' => 'full',
      ),
      'file' => 'uc_product_kit.theme.inc',
    ),
    'uc_product_kit_list_item' => array(
      'arguments' => array(
        'product' => NULL,
      ),
      'file' => 'uc_product_kit.theme.inc',
    ),
  );
}