theme_uc_empty_cart

Function theme_uc_empty_cart() in uc_cart.module:

<?php
  theme_uc_empty_cart
()
?>


Description:

This function themes the message displayed to users when they go to the cart page with no items in their cart.

Return value:

A string containing the HTML output for the empty cart page.


Example:

<?php
// Default function from uc_cart.module
function theme_uc_empty_cart() {
  return
'<p>'. t('There are no products in your shopping cart.') . '</p>';
}
?>