You are here

function uc_ajax_cart_uc_empty_cart in Ubercart AJAX Cart 7.2

Return the text displayed for an empty shopping cart.

It's the same from Ubercart but with cart-form-pane id added, so Aajx Cart block can locate cart form placeholder. #1238594 buf fix.

1 string reference to 'uc_ajax_cart_uc_empty_cart'
uc_ajax_cart_theme_registry_alter in ./uc_ajax_cart.module
Implemetnation of hook_theme_registry_alter.

File

./uc_ajax_cart.module, line 562

Code

function uc_ajax_cart_uc_empty_cart() {
  return '<p id="cart-form-pane">' . t('There are no products in your shopping cart.') . '</p>';
}