You are here

function uc_attribute_theme in Ubercart 6.2

Same name and namespace in other branches
  1. 8.4 uc_attribute/uc_attribute.module \uc_attribute_theme()
  2. 7.3 uc_attribute/uc_attribute.module \uc_attribute_theme()

Implements hook_theme().

File

uc_attribute/uc_attribute.module, line 272

Code

function uc_attribute_theme() {
  return array(
    'uc_attribute_option' => array(
      'arguments' => array(
        'option' => '',
        'price' => '',
      ),
    ),
    'uc_attribute_add_to_cart' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'uc_object_attributes_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_attribute.admin.inc',
    ),
    'uc_object_options_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_attribute.admin.inc',
    ),
    'uc_attribute_options_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_attribute.admin.inc',
    ),
    'uc_product_attributes' => array(
      'arguments' => array(
        'product' => NULL,
      ),
      'file' => 'uc_attribute.admin.inc',
    ),
    'uc_attribute_bulk_update_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_attribute.admin.inc',
    ),
  );
}