Guest User

Untitled

a guest
Jan 16th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $cart = Mage::getModel('checkout/cart')->getQuote()->getAllItems();
  2. foreach ($cart as $item) {
  3. if($item->getProductType() != 'simple') continue;
  4. $itemIds[$item->getProduct()->getId()] = $item->getQty;
  5. }
  6. print_r($itemIds); exit;
Add Comment
Please, Sign In to add comment