You are here

function commerce_cart_menu_item_redirect in Commerce Core 7

Redirects a valid page request to cart/my to the cart page.

1 string reference to 'commerce_cart_menu_item_redirect'
commerce_cart_menu in modules/cart/commerce_cart.module
Implements hook_menu().

File

modules/cart/commerce_cart.module, line 98
Implements the shopping cart system and add to cart features.

Code

function commerce_cart_menu_item_redirect() {
  drupal_goto('cart');
}