function _webform_theme_product in Ubercart Webform Integration 7.2
Same name and namespace in other branches
- 6 components/product.inc \_webform_theme_product()
- 7.3 components/product.inc \_webform_theme_product()
Implements _webform_theme_component().
File
- components/
product.inc, line 36 - Webform module product component.
Code
function _webform_theme_product() {
return array(
'uc_webform_product' => array(
'render element' => 'element',
'file' => 'components/product.inc',
'path' => drupal_get_path('module', 'uc_webform'),
),
'uc_webform_display_product' => array(
'render element' => 'element',
'file' => 'components/product.inc',
'path' => drupal_get_path('module', 'uc_webform'),
),
'uc_webform_render_product' => array(
'render element' => 'element',
'file' => 'components/product.inc',
'path' => drupal_get_path('module', 'uc_webform'),
),
);
}