예제 #1
0
 /**
  * @param  string $productClassId
  * @return integer
  */
 public function getProductQuantity($productClassId)
 {
     $CartItem = $this->cart->getCartItemByIdentifier('Eccube\\Entity\\ProductClass', (string) $productClassId);
     if ($CartItem) {
         return $CartItem->getQuantity();
     } else {
         return 0;
     }
 }