function uc_product_theme in Ubercart 6.2
Same name and namespace in other branches
- 8.4 uc_product/uc_product.module \uc_product_theme()
- 7.3 uc_product/uc_product.module \uc_product_theme()
Implements hook_theme().
File
- uc_product/
uc_product.module, line 287 - The product module for Ubercart.
Code
function uc_product_theme() {
return array(
'uc_product_form_prices' => array(
'arguments' => array(
'form' => NULL,
),
),
'uc_product_form_weight' => array(
'arguments' => array(
'form' => NULL,
),
),
'uc_product_dimensions_form' => array(
'arguments' => array(
'form' => NULL,
),
),
'uc_product_field_settings_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'uc_product.admin.inc',
),
'uc_product_model' => array(
'arguments' => array(
'model' => '',
'teaser' => 0,
'page' => 0,
),
),
'uc_product_body' => array(
'arguments' => array(
'body' => '',
'teaser' => 0,
'page' => 0,
),
),
'uc_product_add_to_cart' => array(
'arguments' => array(
'node' => NULL,
'teaser' => 0,
'page' => 0,
),
),
'uc_product_price' => array(
'arguments' => array(
'price' => 0,
'context' => array(),
'options' => array(),
),
),
'uc_product_weight' => array(
'arguments' => array(
'weight' => 0,
'unit' => NULL,
'teaser' => 0,
'page' => 0,
),
),
'uc_product_dimensions' => array(
'arguments' => array(
'length' => 0,
'width' => 0,
'height' => 0,
'units' => NULL,
'teaser' => 0,
'page' => 0,
),
),
'uc_product_image' => array(
'arguments' => array(
'images' => array(),
'teaser' => 0,
'page' => 0,
),
),
'uc_product_feature_add_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'uc_product.admin.inc',
),
);
}