You are here

function theme_uc_empty_cart in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_cart/uc_cart.module \theme_uc_empty_cart()
  2. 7.3 uc_cart/uc_cart.theme.inc \theme_uc_empty_cart()

Returns the text displayed for an empty shopping cart.

1 theme call to theme_uc_empty_cart()
uc_cart_view in uc_cart/uc_cart.pages.inc
Displays the cart view page.

File

uc_cart/uc_cart.module, line 879

Code

function theme_uc_empty_cart() {
  return '<p class="uc-cart-empty">' . t('There are no products in your shopping cart.') . '</p>';
}