You are here

function theme_uc_cart_block_content_cachable in Ubercart 6.2

Themes the cachable shopping cart block content.

1 theme call to theme_uc_cart_block_content_cachable()
uc_cart_block in uc_cart/uc_cart.module
Implements hook_block().

File

uc_cart/uc_cart.module, line 616

Code

function theme_uc_cart_block_content_cachable() {
  return t('<a href="!url">View</a> your shopping cart.', array(
    '!url' => url('cart'),
  ));
}