00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Mage_Wishlist_Model_Item extends Mage_Core_Model_Abstract
00036 {
00037
00038 protected function _construct()
00039 {
00040 $this->_init('wishlist/item');
00041 }
00042
00043 public function getDataForSave()
00044 {
00045 $data = array();
00046 $data['product_id'] = $this->getProductId();
00047 $data['wishlist_id'] = $this->getWishlistId();
00048 $data['added_at'] = $this->getAddedAt() ? $this->getAddedAt() : Mage::getSingleton('core/date')->gmtDate();
00049 $data['description'] = $this->getDescription();
00050 $data['store_id'] = $this->getStoreId() ? $this->getStoreId() : Mage::app()->getStore()->getId();
00051
00052 return $data;
00053 }
00054
00055 public function loadByProductWishlist($wishlistId, $productId, $sharedStores)
00056 {
00057 $this->_getResource()->loadByProductWishlist($this, $wishlistId, $productId, $sharedStores);
00058 return $this;
00059 }
00060
00061 }