1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Neta\Shopware\SDK\Entity. |
4
|
|
|
* |
5
|
|
|
* Copyright 2016 LeadCommerce |
6
|
|
|
* |
7
|
|
|
* @author Alexander Mahrt <[email protected]> |
8
|
|
|
* @copyright 2016 LeadCommerce <[email protected]> |
9
|
|
|
*/ |
10
|
|
|
|
11
|
|
|
namespace Neta\Shopware\SDK\Entity; |
12
|
|
|
|
13
|
|
|
/** |
14
|
|
|
* Class Shop. |
15
|
|
|
*/ |
16
|
|
|
class Shop extends Base |
17
|
|
|
{ |
18
|
|
|
/** |
19
|
|
|
* @var int |
20
|
|
|
*/ |
21
|
|
|
protected $id; |
22
|
|
|
/** |
23
|
|
|
* @var int |
24
|
|
|
*/ |
25
|
|
|
protected $mainId; |
26
|
|
|
/** |
27
|
|
|
* @var int |
28
|
|
|
*/ |
29
|
|
|
protected $categoryId; |
30
|
|
|
/** |
31
|
|
|
* @var string |
32
|
|
|
*/ |
33
|
|
|
protected $name; |
34
|
|
|
/** |
35
|
|
|
* @var string |
36
|
|
|
*/ |
37
|
|
|
protected $title; |
38
|
|
|
/** |
39
|
|
|
* @var int |
40
|
|
|
*/ |
41
|
|
|
protected $position; |
42
|
|
|
/** |
43
|
|
|
* @var string |
44
|
|
|
*/ |
45
|
|
|
protected $host; |
46
|
|
|
/** |
47
|
|
|
* @var string |
48
|
|
|
*/ |
49
|
|
|
protected $basePath; |
50
|
|
|
/** |
51
|
|
|
* @var string |
52
|
|
|
*/ |
53
|
|
|
protected $baseUrl; |
54
|
|
|
/** |
55
|
|
|
* @var string |
56
|
|
|
*/ |
57
|
|
|
protected $hosts; |
58
|
|
|
/** |
59
|
|
|
* @var bool |
60
|
|
|
*/ |
61
|
|
|
protected $secure; |
62
|
|
|
/** |
63
|
|
|
* @var bool |
64
|
|
|
*/ |
65
|
|
|
protected $alwaysSecure; |
66
|
|
|
/** |
67
|
|
|
* @var string |
68
|
|
|
*/ |
69
|
|
|
protected $secureHost; |
70
|
|
|
/** |
71
|
|
|
* @var string |
72
|
|
|
*/ |
73
|
|
|
protected $secureBasePath; |
74
|
|
|
/** |
75
|
|
|
* @var bool |
76
|
|
|
*/ |
77
|
|
|
protected $default; |
78
|
|
|
/** |
79
|
|
|
* @var bool |
80
|
|
|
*/ |
81
|
|
|
protected $active; |
82
|
|
|
/** |
83
|
|
|
* @var bool |
84
|
|
|
*/ |
85
|
|
|
protected $customerScope; |
86
|
|
|
/** |
87
|
|
|
* @var Locale |
88
|
|
|
*/ |
89
|
|
|
protected $locale; |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* @return int |
93
|
|
|
*/ |
94
|
|
|
public function getId() |
95
|
|
|
{ |
96
|
|
|
return $this->id; |
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
/** |
100
|
|
|
* @param int $id |
101
|
|
|
* |
102
|
|
|
* @return Shop |
103
|
|
|
*/ |
104
|
|
|
public function setId($id) |
105
|
|
|
{ |
106
|
|
|
$this->id = $id; |
107
|
|
|
|
108
|
|
|
return $this; |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
/** |
112
|
|
|
* @return int |
113
|
|
|
*/ |
114
|
|
|
public function getMainId() |
115
|
|
|
{ |
116
|
|
|
return $this->mainId; |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
/** |
120
|
|
|
* @param int $mainId |
121
|
|
|
* |
122
|
|
|
* @return Shop |
123
|
|
|
*/ |
124
|
|
|
public function setMainId($mainId) |
125
|
|
|
{ |
126
|
|
|
$this->mainId = $mainId; |
127
|
|
|
|
128
|
|
|
return $this; |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
/** |
132
|
|
|
* @return int |
133
|
|
|
*/ |
134
|
|
|
public function getCategoryId() |
135
|
|
|
{ |
136
|
|
|
return $this->categoryId; |
137
|
|
|
} |
138
|
|
|
|
139
|
|
|
/** |
140
|
|
|
* @param int $categoryId |
141
|
|
|
* |
142
|
|
|
* @return Shop |
143
|
|
|
*/ |
144
|
|
|
public function setCategoryId($categoryId) |
145
|
|
|
{ |
146
|
|
|
$this->categoryId = $categoryId; |
147
|
|
|
|
148
|
|
|
return $this; |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
/** |
152
|
|
|
* @return string |
153
|
|
|
*/ |
154
|
|
|
public function getName() |
155
|
|
|
{ |
156
|
|
|
return $this->name; |
157
|
|
|
} |
158
|
|
|
|
159
|
|
|
/** |
160
|
|
|
* @param string $name |
161
|
|
|
* |
162
|
|
|
* @return Shop |
163
|
|
|
*/ |
164
|
|
|
public function setName($name) |
165
|
|
|
{ |
166
|
|
|
$this->name = $name; |
167
|
|
|
|
168
|
|
|
return $this; |
169
|
|
|
} |
170
|
|
|
|
171
|
|
|
/** |
172
|
|
|
* @return string |
173
|
|
|
*/ |
174
|
|
|
public function getTitle() |
175
|
|
|
{ |
176
|
|
|
return $this->title; |
177
|
|
|
} |
178
|
|
|
|
179
|
|
|
/** |
180
|
|
|
* @param string $title |
181
|
|
|
* |
182
|
|
|
* @return Shop |
183
|
|
|
*/ |
184
|
|
|
public function setTitle($title) |
185
|
|
|
{ |
186
|
|
|
$this->title = $title; |
187
|
|
|
|
188
|
|
|
return $this; |
189
|
|
|
} |
190
|
|
|
|
191
|
|
|
/** |
192
|
|
|
* @return int |
193
|
|
|
*/ |
194
|
|
|
public function getPosition() |
195
|
|
|
{ |
196
|
|
|
return $this->position; |
197
|
|
|
} |
198
|
|
|
|
199
|
|
|
/** |
200
|
|
|
* @param int $position |
201
|
|
|
* |
202
|
|
|
* @return Shop |
203
|
|
|
*/ |
204
|
|
|
public function setPosition($position) |
205
|
|
|
{ |
206
|
|
|
$this->position = $position; |
207
|
|
|
|
208
|
|
|
return $this; |
209
|
|
|
} |
210
|
|
|
|
211
|
|
|
/** |
212
|
|
|
* @return string |
213
|
|
|
*/ |
214
|
|
|
public function getHost() |
215
|
|
|
{ |
216
|
|
|
return $this->host; |
217
|
|
|
} |
218
|
|
|
|
219
|
|
|
/** |
220
|
|
|
* @param string $host |
221
|
|
|
* |
222
|
|
|
* @return Shop |
223
|
|
|
*/ |
224
|
|
|
public function setHost($host) |
225
|
|
|
{ |
226
|
|
|
$this->host = $host; |
227
|
|
|
|
228
|
|
|
return $this; |
229
|
|
|
} |
230
|
|
|
|
231
|
|
|
/** |
232
|
|
|
* @return string |
233
|
|
|
*/ |
234
|
|
|
public function getBasePath() |
235
|
|
|
{ |
236
|
|
|
return $this->basePath; |
237
|
|
|
} |
238
|
|
|
|
239
|
|
|
/** |
240
|
|
|
* @param string $basePath |
241
|
|
|
* |
242
|
|
|
* @return Shop |
243
|
|
|
*/ |
244
|
|
|
public function setBasePath($basePath) |
245
|
|
|
{ |
246
|
|
|
$this->basePath = $basePath; |
247
|
|
|
|
248
|
|
|
return $this; |
249
|
|
|
} |
250
|
|
|
|
251
|
|
|
/** |
252
|
|
|
* @return string |
253
|
|
|
*/ |
254
|
|
|
public function getBaseUrl() |
255
|
|
|
{ |
256
|
|
|
return $this->baseUrl; |
257
|
|
|
} |
258
|
|
|
|
259
|
|
|
/** |
260
|
|
|
* @param string $baseUrl |
261
|
|
|
* |
262
|
|
|
* @return Shop |
263
|
|
|
*/ |
264
|
|
|
public function setBaseUrl($baseUrl) |
265
|
|
|
{ |
266
|
|
|
$this->baseUrl = $baseUrl; |
267
|
|
|
|
268
|
|
|
return $this; |
269
|
|
|
} |
270
|
|
|
|
271
|
|
|
/** |
272
|
|
|
* @return string |
273
|
|
|
*/ |
274
|
|
|
public function getHosts() |
275
|
|
|
{ |
276
|
|
|
return $this->hosts; |
277
|
|
|
} |
278
|
|
|
|
279
|
|
|
/** |
280
|
|
|
* @param string $hosts |
281
|
|
|
* |
282
|
|
|
* @return Shop |
283
|
|
|
*/ |
284
|
|
|
public function setHosts($hosts) |
285
|
|
|
{ |
286
|
|
|
$this->hosts = $hosts; |
287
|
|
|
|
288
|
|
|
return $this; |
289
|
|
|
} |
290
|
|
|
|
291
|
|
|
/** |
292
|
|
|
* @return bool |
293
|
|
|
*/ |
294
|
|
|
public function isSecure() |
295
|
|
|
{ |
296
|
|
|
return $this->secure; |
297
|
|
|
} |
298
|
|
|
|
299
|
|
|
/** |
300
|
|
|
* @param bool $secure |
301
|
|
|
* |
302
|
|
|
* @return Shop |
303
|
|
|
*/ |
304
|
|
|
public function setSecure($secure) |
305
|
|
|
{ |
306
|
|
|
$this->secure = $secure; |
307
|
|
|
|
308
|
|
|
return $this; |
309
|
|
|
} |
310
|
|
|
|
311
|
|
|
/** |
312
|
|
|
* @return bool |
313
|
|
|
*/ |
314
|
|
|
public function isAlwaysSecure() |
315
|
|
|
{ |
316
|
|
|
return $this->alwaysSecure; |
317
|
|
|
} |
318
|
|
|
|
319
|
|
|
/** |
320
|
|
|
* @param bool $alwaysSecure |
321
|
|
|
* |
322
|
|
|
* @return Shop |
323
|
|
|
*/ |
324
|
|
|
public function setAlwaysSecure($alwaysSecure) |
325
|
|
|
{ |
326
|
|
|
$this->alwaysSecure = $alwaysSecure; |
327
|
|
|
|
328
|
|
|
return $this; |
329
|
|
|
} |
330
|
|
|
|
331
|
|
|
/** |
332
|
|
|
* @return string |
333
|
|
|
*/ |
334
|
|
|
public function getSecureHost() |
335
|
|
|
{ |
336
|
|
|
return $this->secureHost; |
337
|
|
|
} |
338
|
|
|
|
339
|
|
|
/** |
340
|
|
|
* @param string $secureHost |
341
|
|
|
* |
342
|
|
|
* @return Shop |
343
|
|
|
*/ |
344
|
|
|
public function setSecureHost($secureHost) |
345
|
|
|
{ |
346
|
|
|
$this->secureHost = $secureHost; |
347
|
|
|
|
348
|
|
|
return $this; |
349
|
|
|
} |
350
|
|
|
|
351
|
|
|
/** |
352
|
|
|
* @return string |
353
|
|
|
*/ |
354
|
|
|
public function getSecureBasePath() |
355
|
|
|
{ |
356
|
|
|
return $this->secureBasePath; |
357
|
|
|
} |
358
|
|
|
|
359
|
|
|
/** |
360
|
|
|
* @param string $secureBasePath |
361
|
|
|
* |
362
|
|
|
* @return Shop |
363
|
|
|
*/ |
364
|
|
|
public function setSecureBasePath($secureBasePath) |
365
|
|
|
{ |
366
|
|
|
$this->secureBasePath = $secureBasePath; |
367
|
|
|
|
368
|
|
|
return $this; |
369
|
|
|
} |
370
|
|
|
|
371
|
|
|
/** |
372
|
|
|
* @return bool |
373
|
|
|
*/ |
374
|
|
|
public function isDefault() |
375
|
|
|
{ |
376
|
|
|
return $this->default; |
377
|
|
|
} |
378
|
|
|
|
379
|
|
|
/** |
380
|
|
|
* @param bool $default |
381
|
|
|
* |
382
|
|
|
* @return Shop |
383
|
|
|
*/ |
384
|
|
|
public function setDefault($default) |
385
|
|
|
{ |
386
|
|
|
$this->default = $default; |
387
|
|
|
|
388
|
|
|
return $this; |
389
|
|
|
} |
390
|
|
|
|
391
|
|
|
/** |
392
|
|
|
* @return bool |
393
|
|
|
*/ |
394
|
|
|
public function isActive() |
395
|
|
|
{ |
396
|
|
|
return $this->active; |
397
|
|
|
} |
398
|
|
|
|
399
|
|
|
/** |
400
|
|
|
* @param bool $active |
401
|
|
|
* |
402
|
|
|
* @return Shop |
403
|
|
|
*/ |
404
|
|
|
public function setActive($active) |
405
|
|
|
{ |
406
|
|
|
$this->active = $active; |
407
|
|
|
|
408
|
|
|
return $this; |
409
|
|
|
} |
410
|
|
|
} |
411
|
|
|
|