You are here

function theme_uc_product_display_price in Ubercart 5

2 theme calls to theme_uc_product_display_price()
uc_product_kit_view in uc_product_kit/uc_product_kit.module
Implementation of hook_view().
uc_product_view in uc_product/uc_product.module
Implementation of hook_view().

File

uc_product/uc_product.module, line 2488
The product module for Ubercart.

Code

function theme_uc_product_display_price($price, $teaser = 0, $page = 0) {
  $output = '<div class="display_price">';
  $output .= uc_currency_format($price);
  $output .= '</div>';
  return $output;
}