You are here

function theme_varprice_qty in UC Variable Price 7

Same name and namespace in other branches
  1. 6 uc_varprice.module \theme_varprice_qty()

Theme the Qty. field for products in the shopping cart with variable prices.

File

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

Code

function theme_varprice_qty($variables) {
  $element = $variables['form'];
  return $element['#default_value'];
}