You are here

function theme_commerce_cart_empty_page in Commerce Core 7

Themes an empty shopping cart page.

1 theme call to theme_commerce_cart_empty_page()
commerce_cart_view in modules/cart/includes/commerce_cart.pages.inc
Displays the shopping cart form and associated information.

File

modules/cart/commerce_cart.module, line 831
Implements the shopping cart system and add to cart features.

Code

function theme_commerce_cart_empty_page() {
  return '<div class="cart-empty-page">' . t('Your shopping cart is empty.') . '</div>';
}