You are here

function _webform_theme_product in Ubercart Webform Integration 6

Same name and namespace in other branches
  1. 7.3 components/product.inc \_webform_theme_product()
  2. 7.2 components/product.inc \_webform_theme_product()

Implementation of _webform_theme_component().

This allows each Webform component to add information into hook_theme().

File

components/product.inc, line 13
Webform module product component.

Code

function _webform_theme_product() {
  return array(
    'uc_webform_display_product' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'uc_webform_render_product' => array(
      'arguments' => array(
        'product' => NULL,
      ),
    ),
  );
}