1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
namespace Dotdigitalgroup\Email\Block;
/**
* Wishlist block
*
* @api
*/
class Wishlist extends \Magento\Catalog\Block\Product\AbstractProduct
{
/**
* @var \Dotdigitalgroup\Email\Helper\Data
*/
public $helper;
/**
* @var \Magento\Framework\Pricing\Helper\Data
*/
public $priceHelper;
/**
* @var \Magento\Customer\Model\CustomerFactory
*/
public $customerFactory;
/**
* @var \Dotdigitalgroup\Email\Model\ResourceModel\Wishlist
*/
public $wishlist;
/**
* @var \Magento\Customer\Model\ResourceModel\Customer
*/
private $customerResource;
/**
* Wishlist constructor.
*
* @param \Magento\Catalog\Block\Product\Context $context
* @param \Magento\Customer\Model\ResourceModel\Customer $customerResource
* @param \Dotdigitalgroup\Email\Model\ResourceModel\Wishlist $wishlist
* @param \Magento\Customer\Model\CustomerFactory $customerFactory
* @param \Dotdigitalgroup\Email\Helper\Data $helper
* @param \Magento\Framework\Pricing\Helper\Data $priceHelper
* @param array $data
*/
public function __construct(
\Magento\Catalog\Block\Product\Context $context,
\Magento\Customer\Model\ResourceModel\Customer $customerResource,
\Dotdigitalgroup\Email\Model\ResourceModel\Wishlist $wishlist,
\Magento\Customer\Model\CustomerFactory $customerFactory,
\Dotdigitalgroup\Email\Helper\Data $helper,
\Magento\Framework\Pricing\Helper\Data $priceHelper,
array $data = []
) {
parent::__construct($context, $data);
$this->wishlist = $wishlist;
$this->customerFactory = $customerFactory;
$this->helper = $helper;
$this->priceHelper = $priceHelper;
$this->customerResource = $customerResource;
}
/**
* Get wishlist items.
*
* @return boolean|\Magento\Wishlist\Model\ResourceModel\Item\Collection
*/
public function getWishlistItems()
{
$wishlist = $this->_getWishlist();
if ($wishlist && ! empty($wishlist->getItemCollection())) {
return $wishlist->getItemCollection();
} else {
return false;
}
}
/**
* @return bool|\Magento\Framework\DataObject
*/
public function _getWishlist()
{
$params = $this->getRequest()->getParams();
if (! $params['customer_id'] ||
! isset($params['code']) ||
! $this->helper->isCodeValid($params['code'])
) {
$this->helper->log('Wishlist no id or valid code is set');
return false;
}
$customerId = (int) $params['customer_id'];
$customer = $this->customerFactory->create();
$this->customerResource->load($customer, $customerId);
if (! $customer->getId()) {
return false;
}
return $this->wishlist->getWishlistsForCustomer($customerId);
}
/**
* Wishlist display mode type.
*
* @return string|boolean
*/
public function getMode()
{
return $this->helper->getWebsiteConfig(
\Dotdigitalgroup\Email\Helper\Config::XML_PATH_CONNECTOR_DYNAMIC_CONTENT_WIHSLIST_DISPLAY
);
}
/**
* Product url.
*
* @param null|string|bool|int|\Magento\Store\Api\Data\StoreInterface $store
*
* @return boolean|string
*/
public function getTextForUrl($store)
{
/** @var \Magento\Store\Model\Store $store */
$store = $this->_storeManager->getStore($store);
return $store->getConfig(
\Dotdigitalgroup\Email\Helper\Config::XML_PATH_CONNECTOR_DYNAMIC_CONTENT_LINK_TEXT
);
}
}