You are here

function commerce_product_bundle_theme in Commerce Product Bundle 8

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

Implements hook_theme().

File

./commerce_product_bundle.module, line 32
Contains commerce_product_bundle.module.

Code

function commerce_product_bundle_theme() {
  return [
    'commerce_product_bundle_form' => [
      'render element' => 'form',
    ],
    'commerce_product_bundle' => [
      'render element' => 'elements',
    ],
    'commerce_product_bundle_i' => [
      'render element' => 'elements',
    ],
    'container__field__widget_commerce_product_bundle_items' => [
      'render element' => 'elements',
    ],
  ];
}