You are here

function _webform_defaults_product in Ubercart Webform Integration 6

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

Implementation of _webform_defaults_component().

File

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

Code

function _webform_defaults_product() {
  return array(
    'name' => '',
    'form_key' => NULL,
    'email' => 1,
    'mandatory' => 0,
    'pid' => 0,
    'weight' => 0,
    'extra' => array(
      'description' => '',
    ),
  );
}