Example #1
0
 /**
  * Retrieve Item Store for URL
  *
  * @param Mage_Catalog_Model_Product|Mage_Wishlist_Model_Item $item
  * @return Mage_Core_Model_Store
  */
 protected function _getUrlStore($item)
 {
     $storeId = null;
     $product = null;
     if ($item instanceof Mage_Wishlist_Model_Item) {
         $product = $item->getProduct();
     } elseif ($item instanceof Mage_Catalog_Model_Product) {
         $product = $item;
     }
     if ($product) {
         if ($product->isVisibleInSiteVisibility()) {
             $storeId = $product->getStoreId();
         } else {
             if ($product->hasUrlDataObject()) {
                 $storeId = $product->getUrlDataObject()->getStoreId();
             }
         }
     }
     return Mage::app()->getStore($storeId);
 }
 /**
  * Move item to given wishlist.
  * Check whether item belongs to one of customer's wishlists
  *
  * @param Mage_Wishlist_Model_Item $item
  * @param Mage_Wishlist_Model_Wishlist $wishlist
  * @param Mage_Wishlist_Model_Resource_Wishlist_Collection $customerWishlists
  * @param int $qty
  * @throws InvalidArgumentException|DomainException
  */
 protected function _moveItem(Mage_Wishlist_Model_Item $item, Mage_Wishlist_Model_Wishlist $wishlist, Mage_Wishlist_Model_Resource_Wishlist_Collection $customerWishlists, $qty = null)
 {
     if (!$item->getId()) {
         throw new InvalidArgumentException();
     }
     if ($item->getWishlistId() == $wishlist->getId()) {
         throw new DomainException(null, 1);
     }
     if (!$customerWishlists->getItemById($item->getWishlistId())) {
         throw new DomainException(null, 2);
     }
     $buyRequest = $item->getBuyRequest();
     if ($qty) {
         $buyRequest->setQty($qty);
     }
     $wishlist->addNewItem($item->getProduct(), $buyRequest);
     $qtyDiff = $item->getQty() - $qty;
     if ($qty && $qtyDiff > 0) {
         $item->setQty($qtyDiff);
         $item->save();
     } else {
         $item->delete();
     }
 }
 /**
  * Retrieve product identifier linked with item
  *
  * @param   Mage_Wishlist_Model_Item $item
  * @return  int
  */
 public function getProductId($item)
 {
     return $item->getProduct()->getId();
 }
Example #4
0
 /**
  * Returns html for showing item options
  *
  * @deprecated after 1.6.2.0
  * @param Mage_Wishlist_Model_Item $item
  * @return string
  */
 public function getDetailsHtml(Mage_Wishlist_Model_Item $item)
 {
     $cfg = $this->getOptionsRenderCfg($item->getProduct()->getTypeId());
     if (!$cfg) {
         return '';
     }
     $helper = Mage::helper($cfg['helper']);
     if (!$helper instanceof Mage_Catalog_Helper_Product_Configuration_Interface) {
         Mage::throwException($this->__("Helper for wishlist options rendering doesn't implement required interface."));
     }
     $block = $this->getChild('item_options');
     if (!$block) {
         return '';
     }
     if ($cfg['template']) {
         $template = $cfg['template'];
     } else {
         $cfgDefault = $this->getOptionsRenderCfg('default');
         if (!$cfgDefault) {
             return '';
         }
         $template = $cfgDefault['template'];
     }
     return $block->setTemplate($template)->setOptionList($helper->getOptions($item))->toHtml();
 }
 /**
  * Retrieve URL to item Product
  *
  * @param  Mage_Wishlist_Model_Item|Mage_Catalog_Model_Product $item
  * @param  array $additional
  * @return string
  */
 public function getProductUrl($item, $additional = array())
 {
     if ($item instanceof Mage_Catalog_Model_Product) {
         $product = $item;
     } else {
         $product = $item->getProduct();
     }
     $buyRequest = $item->getBuyRequest();
     if (is_object($buyRequest)) {
         $config = $buyRequest->getSuperProductConfig();
         if ($config && !empty($config['product_id'])) {
             $product = Mage::getModel('catalog/product')->setStoreId(Mage::app()->getStore()->getStoreId())->load($config['product_id']);
         }
     }
     return parent::getProductUrl($product, $additional);
 }
Example #6
0
 /**
  * @param Mage_Wishlist_Model_Item $item
  *
  * @return string
  */
 protected function _getWishlistItemUrl(Mage_Wishlist_Model_Item $item)
 {
     if ($item->getRedirectUrl()) {
         return $item->getRedirectUrl();
     }
     return $this->_getProductUrl($item->getProduct());
 }