function theme_uc_empty_cart in Ubercart 7.3
Same name and namespace in other branches
- 5 uc_cart/uc_cart.module \theme_uc_empty_cart()
- 6.2 uc_cart/uc_cart.module \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.theme.inc, line 282 - Theme functions for the uc_cart module.
Code
function theme_uc_empty_cart() {
return '<p class="uc-cart-empty">' . t('There are no products in your shopping cart.') . '</p>';
}