You are here

function commerce_product_attributes_theme in Commerce Product Attributes 7

Implements hook_theme().

File

./commerce_product_attributes.module, line 75
This module adds some improvements to the Drupal Commerce core.

Code

function commerce_product_attributes_theme() {
  return array(
    'commerce_product_attributes_item_title' => array(
      'variables' => array(
        'item' => NULL,
        'path' => NULL,
        'options' => NULL,
        'create_link' => NULL,
      ),
    ),
  );
}