You are here

function uc_cart_view_form_update_message in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_cart/uc_cart.module \uc_cart_view_form_update_message()

Displays "cart updated" message for uc_cart_view_form().

See also

uc_cart_view_form()

1 string reference to 'uc_cart_view_form_update_message'
uc_cart_view_form in uc_cart/uc_cart.module
Displays the contents of the customer's cart.

File

uc_cart/uc_cart.module, line 729

Code

function uc_cart_view_form_update_message($form, &$form_state) {
  drupal_set_message(t('Your cart has been updated.'));
}