theme_uc_product_display_price

Function theme_uc_product_display_price() in uc_product.module:

<?php
   theme_uc_product_display_price
($price)
?>


Description:

Wraps the price in a <div> with the class "display_price".

Parameters:
  • $price - the numerical value to be displayed.
Return value:

An HTML string containing the formatted price.


Example:

<?php
  $output
.= theme('uc_product_display_price', $node->sell_price);
?>