You are here

function theme_uc_cart_view_price in Ubercart 6.2

Dumb wrapper function, as the price has been themed by uc_price() already.

See also

uc_cart_view_form()

1 theme call to theme_uc_cart_view_price()
uc_cart_view_form in uc_cart/uc_cart.module
Displays a page allowing the customer to view the contents of his or her cart.

File

uc_cart/uc_cart.module, line 1091

Code

function theme_uc_cart_view_price($form) {
  return $form['#value'];
}