12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Wishlist item model resource
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\Wishlist\Model\ResourceModel;
- /**
- * @api
- * @since 100.0.2
- */
- class Item extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
- {
- /**
- * Initialize connection and define main table
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init('wishlist_item', 'wishlist_item_id');
- }
- /**
- * Load item by wishlist, product and shared stores
- *
- * @param \Magento\Wishlist\Model\Item $object
- * @param int $wishlistId
- * @param int $productId
- * @param array $sharedStores
- * @return $this
- */
- public function loadByProductWishlist($object, $wishlistId, $productId, $sharedStores)
- {
- $connection = $this->getConnection();
- $storeWhere = $connection->quoteInto('store_id IN (?)', $sharedStores);
- $select = $connection->select()->from(
- $this->getMainTable()
- )->where(
- 'wishlist_id=:wishlist_id AND ' . 'product_id=:product_id AND ' . $storeWhere
- );
- $bind = ['wishlist_id' => $wishlistId, 'product_id' => $productId];
- $data = $connection->fetchRow($select, $bind);
- if ($data) {
- $object->setData($data);
- }
- $this->_afterLoad($object);
- return $this;
- }
- /**
- * {@inheritdoc}
- */
- public function save(\Magento\Framework\Model\AbstractModel $object)
- {
- $hasDataChanges = $object->hasDataChanges();
- $object->setIsOptionsSaved(false);
- $result = parent::save($object);
- if ($hasDataChanges && !$object->isOptionsSaved()) {
- $object->saveItemOptions();
- }
- return $result;
- }
- }
|