You are here

function uc_cart_empty_confirm in Ubercart 7.3

Confirm that the customer wants to empty their cart.

1 string reference to 'uc_cart_empty_confirm'
uc_cart_menu in uc_cart/uc_cart.module
Implements hook_menu().

File

uc_cart/uc_cart.pages.inc, line 53
Cart menu items.

Code

function uc_cart_empty_confirm($form, &$form_state) {
  return confirm_form($form, t('Are you sure you want to empty your shopping cart?'), 'cart');
}