You are here

function commerce_product_bundle_theme in Commerce Product Bundle 7

Same name and namespace in other branches
  1. 8 commerce_product_bundle.module \commerce_product_bundle_theme()
  2. 7.2 commerce_product_bundle.module \commerce_product_bundle_theme()

Implements hook_theme().

See also

theme_commerce_product_bundle_attribute().

File

./commerce_product_bundle.module, line 1417
Allows the bundling of products in Drupal Commerce.

Code

function commerce_product_bundle_theme() {
  return array(
    'commerce_product_bundle_attribute' => array(
      'variables' => array(
        'sub_line_item' => NULL,
        'product_attribute_view' => NULL,
      ),
    ),
  );
}