You are here

function uc_varprice_uc_add_to_cart_data in UC Variable Price 7

Implements hook_uc_add_to_cart_data().

File

./uc_varprice.module, line 176
Defines a product feature to turn any product into a variable priced product.

Code

function uc_varprice_uc_add_to_cart_data($form_values) {

  // Store the customer entered price in the product's data array.
  if (!empty($form_values['varprice'])) {
    return array(
      'varprice' => $form_values['varprice'],
      'uniqid' => uniqid(),
    );
  }
}