function theme_uc_product_body in Ubercart 6.2
Formats a product's body.
1 theme call to theme_uc_product_body()
- uc_product_view in uc_product/
uc_product.module - Implements hook_view().
File
- uc_product/
uc_product.module, line 1439 - The product module for Ubercart.
Code
function theme_uc_product_body($body, $teaser = 0, $page = 0) {
$output = '<div class="product-body">';
$output .= $body;
$output .= '</div>';
return $output;
}