You are here

function theme_product_price_alterer_field_formatter_default in Ubercart Discounts (Alternative) 7.2

Same name and namespace in other branches
  1. 6.2 product_price_alterer_field/product_price_alterer_field.module \theme_product_price_alterer_field_formatter_default()

Theme function for 'default' text field formatter.

File

product_price_alterer_field/product_price_alterer_field.module, line 70
Provides discounts based on ubercart products based on product quantity purchased using attached product field.

Code

function theme_product_price_alterer_field_formatter_default($element) {
  return $element["#item"]["discounted_price"];
}