Newer
Older
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
<?php
namespace NicolasBejean\CategoryWidget\Model;
use \Magento\Framework\Exception\LocalizedException;
use \NicolasBejean\CategoryWidget\Api\Data\CategoryWidgetInterface;
use \Magento\Framework\DataObject\IdentityInterface;
use \Magento\Framework\Model\AbstractModel;
/**
* Class CategoryWidget
*
* @category PHP
* @package NicolasBejean\CategoryWidget\Model
* @author Nicolas Béjean <nicolas@bejean.eu>
* @license https://github.com/nicolasbejean/category-widget/blob/master/licence.txt BSD Licence
* @link https://www.bejean.eu
*/
class CategoryWidget extends AbstractModel implements CategoryWidgetInterface, IdentityInterface
{
/**
* Category Widget Cache tag
*
* @var string
*/
const CACHE_TAG = 'categorywidget';
/**
* Category Widget statuses
*/
const STATUS_ENABLED = 1;
const STATUS_DISABLED = 0;
/**
* Prefix of model events names
*
* @var string
*/
protected $eventPrefix = 'categorywidget';
/**
* @return void
*/
protected function _construct()
{
$this->_init(ResourceModel\CategoryWidget::class);
}
/**
* Prevent category widgetrecursion
*
* @return AbstractModel
* @throws LocalizedException
*/
public function beforeSave()
{
if ($this->hasDataChanges()) {
$this->setUpdateTime(null);
}
$needle = 'entity_id="' . $this->getId() . '"';
if (false == strstr($this->getIdentifier(), $needle)) {
return parent::beforeSave();
}
throw new LocalizedException(
__('Make sure that category widget path does not reference the category widget itself.')
);
}
/**
* Get identities
*
* @return array
*/
public function getIdentities()
{
return [self::CACHE_TAG . '_' . $this->getId(), self::CACHE_TAG . '_' . $this->getIdentifier()];
}
/**
* Retrieve category widgetid
*
* @return int
*/
public function getId()
{
return $this->getData(self::ENTITY_ID);
}
/**
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
}
/**
* Retrieve category widget content
*
* @return string
*/
public function getContent()
{
return $this->getData(self::CONTENT);
}
/**
* Retrieve category widget creation time
*
* @return string
*/
public function getCreationTime()
{
return $this->getData(self::CREATION_TIME);
}
/**
* Retrieve category widget update time
*
* @return string
*/
public function getUpdateTime()
{
return $this->getData(self::UPDATE_TIME);
}
/**
* Is active
*
* @return bool
*/
public function isActive()
{
return (bool)$this->getData(self::IS_ACTIVE);
}
/**
* Set ID
*
* @param int $id
* @return CategoryWidgetInterface
*/
public function setId($id)
{
return $this->setData(self::ENTITY_ID, $id);
}
/**
return $this->setData(self::IDENTIFIER, $identifier);
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
}
/**
* Set Content
*
* @param string $content
* @return CategoryWidgetInterface
*/
public function setContent($content)
{
return $this->setData(self::CONTENT, $content);
}
/**
* Set creation time
*
* @param string $creationTime
* @return CategoryWidgetInterface
*/
public function setCreationTime($creationTime)
{
return $this->setData(self::CREATION_TIME, $creationTime);
}
/**
* Set update time
*
* @param string $updateTime
* @return CategoryWidgetInterface
*/
public function setUpdateTime($updateTime)
{
return $this->setData(self::UPDATE_TIME, $updateTime);
}
/**
* Set is active
*
* @param bool|int $isActive
* @return CategoryWidgetInterface
*/
public function setIsActive($isActive)
{
return $this->setData(self::IS_ACTIVE, $isActive);
}
/**
* Receive slider store ids
*
* @return int[]
*/
public function getStores()
{
return $this->hasData('stores') ? $this->getData('stores') : $this->getData('store_id');
}
/**
* Prepare category widget statuses.
*
* @return array
*/
public function getAvailableStatuses()
{
return [self::STATUS_ENABLED => __('Enabled'), self::STATUS_DISABLED => __('Disabled')];
}
}