store.php
30.5 KB
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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
<?php
class ControllerSettingStore extends Controller {
private $error = array();
public function index() {
$this->load->language('setting/store');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('setting/store');
$this->load->model('setting/setting');
$this->getList();
}
public function add() {
$this->load->language('setting/store');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('setting/store');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
$store_id = $this->model_setting_store->addStore($this->request->post);
$this->load->model('setting/setting');
$this->model_setting_setting->editSetting('config', $this->request->post, $store_id);
$this->session->data['success'] = $this->language->get('text_success');
$this->response->redirect($this->url->link('setting/store', 'token=' . $this->session->data['token'], true));
}
$this->getForm();
}
public function edit() {
$this->load->language('setting/store');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('setting/store');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
$this->model_setting_store->editStore($this->request->get['store_id'], $this->request->post);
$this->load->model('setting/setting');
$this->model_setting_setting->editSetting('config', $this->request->post, $this->request->get['store_id']);
$this->session->data['success'] = $this->language->get('text_success');
$this->response->redirect($this->url->link('setting/store', 'token=' . $this->session->data['token'] . '&store_id=' . $this->request->get['store_id'], true));
}
$this->getForm();
}
public function delete() {
$this->load->language('setting/store');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('setting/store');
if (isset($this->request->post['selected']) && $this->validateDelete()) {
$this->load->model('setting/setting');
foreach ($this->request->post['selected'] as $store_id) {
$this->model_setting_store->deleteStore($store_id);
$this->model_setting_setting->deleteSetting('config', $store_id);
}
$this->session->data['success'] = $this->language->get('text_success');
$this->response->redirect($this->url->link('setting/store', 'token=' . $this->session->data['token'], true));
}
$this->getList();
}
protected function getList() {
$url = '';
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], true)
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('heading_title'),
'href' => $this->url->link('setting/store', 'token=' . $this->session->data['token'], true)
);
$data['add'] = $this->url->link('setting/store/add', 'token=' . $this->session->data['token'], true);
$data['delete'] = $this->url->link('setting/store/delete', 'token=' . $this->session->data['token'], true);
$data['stores'] = array();
$data['stores'][] = array(
'store_id' => 0,
'name' => $this->config->get('config_name') . $this->language->get('text_default'),
'url' => HTTP_CATALOG,
'edit' => $this->url->link('setting/setting', 'token=' . $this->session->data['token'], true)
);
$store_total = $this->model_setting_store->getTotalStores();
$results = $this->model_setting_store->getStores();
foreach ($results as $result) {
$data['stores'][] = array(
'store_id' => $result['store_id'],
'name' => $result['name'],
'url' => $result['url'],
'edit' => $this->url->link('setting/store/edit', 'token=' . $this->session->data['token'] . '&store_id=' . $result['store_id'], true)
);
}
$data['heading_title'] = $this->language->get('heading_title');
$data['text_list'] = $this->language->get('text_list');
$data['text_no_results'] = $this->language->get('text_no_results');
$data['text_confirm'] = $this->language->get('text_confirm');
$data['column_name'] = $this->language->get('column_name');
$data['column_url'] = $this->language->get('column_url');
$data['column_action'] = $this->language->get('column_action');
$data['button_add'] = $this->language->get('button_add');
$data['button_edit'] = $this->language->get('button_edit');
$data['button_delete'] = $this->language->get('button_delete');
if (isset($this->error['warning'])) {
$data['error_warning'] = $this->error['warning'];
} else {
$data['error_warning'] = '';
}
if (isset($this->session->data['success'])) {
$data['success'] = $this->session->data['success'];
unset($this->session->data['success']);
} else {
$data['success'] = '';
}
if (isset($this->request->post['selected'])) {
$data['selected'] = (array)$this->request->post['selected'];
} else {
$data['selected'] = array();
}
$data['header'] = $this->load->controller('common/header');
$data['column_left'] = $this->load->controller('common/column_left');
$data['footer'] = $this->load->controller('common/footer');
$this->response->setOutput($this->load->view('setting/store_list', $data));
}
public function getForm() {
$data['heading_title'] = $this->language->get('heading_title');
$data['text_form'] = !isset($this->request->get['store_id']) ? $this->language->get('text_add') : $this->language->get('text_edit');
$data['text_select'] = $this->language->get('text_select');
$data['text_none'] = $this->language->get('text_none');
$data['text_yes'] = $this->language->get('text_yes');
$data['text_no'] = $this->language->get('text_no');
$data['text_tax'] = $this->language->get('text_tax');
$data['text_account'] = $this->language->get('text_account');
$data['text_checkout'] = $this->language->get('text_checkout');
$data['text_stock'] = $this->language->get('text_stock');
$data['text_shipping'] = $this->language->get('text_shipping');
$data['text_payment'] = $this->language->get('text_payment');
$data['entry_url'] = $this->language->get('entry_url');
$data['entry_ssl'] = $this->language->get('entry_ssl');
$data['entry_meta_title'] = $this->language->get('entry_meta_title');
$data['entry_meta_description'] = $this->language->get('entry_meta_description');
$data['entry_meta_keyword'] = $this->language->get('entry_meta_keyword');
$data['entry_theme'] = $this->language->get('entry_theme');
$data['entry_layout'] = $this->language->get('entry_layout');
$data['entry_name'] = $this->language->get('entry_name');
$data['entry_owner'] = $this->language->get('entry_owner');
$data['entry_address'] = $this->language->get('entry_address');
$data['entry_geocode'] = $this->language->get('entry_geocode');
$data['entry_email'] = $this->language->get('entry_email');
$data['entry_telephone'] = $this->language->get('entry_telephone');
$data['entry_fax'] = $this->language->get('entry_fax');
$data['entry_image'] = $this->language->get('entry_image');
$data['entry_open'] = $this->language->get('entry_open');
$data['entry_comment'] = $this->language->get('entry_comment');
$data['entry_location'] = $this->language->get('entry_location');
$data['entry_country'] = $this->language->get('entry_country');
$data['entry_zone'] = $this->language->get('entry_zone');
$data['entry_language'] = $this->language->get('entry_language');
$data['entry_currency'] = $this->language->get('entry_currency');
$data['entry_tax'] = $this->language->get('entry_tax');
$data['entry_tax_default'] = $this->language->get('entry_tax_default');
$data['entry_tax_customer'] = $this->language->get('entry_tax_customer');
$data['entry_customer_group'] = $this->language->get('entry_customer_group');
$data['entry_customer_group_display'] = $this->language->get('entry_customer_group_display');
$data['entry_customer_price'] = $this->language->get('entry_customer_price');
$data['entry_account'] = $this->language->get('entry_account');
$data['entry_cart_weight'] = $this->language->get('entry_cart_weight');
$data['entry_checkout_guest'] = $this->language->get('entry_checkout_guest');
$data['entry_checkout'] = $this->language->get('entry_checkout');
$data['entry_order_status'] = $this->language->get('entry_order_status');
$data['entry_stock_display'] = $this->language->get('entry_stock_display');
$data['entry_stock_checkout'] = $this->language->get('entry_stock_checkout');
$data['entry_ajax_cart'] = $this->language->get('entry_ajax_cart');
$data['entry_logo'] = $this->language->get('entry_logo');
$data['entry_icon'] = $this->language->get('entry_icon');
$data['entry_secure'] = $this->language->get('entry_secure');
$data['help_url'] = $this->language->get('help_url');
$data['help_ssl'] = $this->language->get('help_ssl');
$data['help_geocode'] = $this->language->get('help_geocode');
$data['help_open'] = $this->language->get('help_open');
$data['help_comment'] = $this->language->get('help_comment');
$data['help_location'] = $this->language->get('help_location');
$data['help_currency'] = $this->language->get('help_currency');
$data['help_tax_default'] = $this->language->get('help_tax_default');
$data['help_tax_customer'] = $this->language->get('help_tax_customer');
$data['help_customer_group'] = $this->language->get('help_customer_group');
$data['help_customer_group_display'] = $this->language->get('help_customer_group_display');
$data['help_customer_price'] = $this->language->get('help_customer_price');
$data['help_account'] = $this->language->get('help_account');
$data['help_checkout_guest'] = $this->language->get('help_checkout_guest');
$data['help_checkout'] = $this->language->get('help_checkout');
$data['help_order_status'] = $this->language->get('help_order_status');
$data['help_stock_display'] = $this->language->get('help_stock_display');
$data['help_stock_checkout'] = $this->language->get('help_stock_checkout');
$data['help_icon'] = $this->language->get('help_icon');
$data['help_secure'] = $this->language->get('help_secure');
$data['button_save'] = $this->language->get('button_save');
$data['button_cancel'] = $this->language->get('button_cancel');
$data['tab_general'] = $this->language->get('tab_general');
$data['tab_store'] = $this->language->get('tab_store');
$data['tab_local'] = $this->language->get('tab_local');
$data['tab_option'] = $this->language->get('tab_option');
$data['tab_image'] = $this->language->get('tab_image');
$data['tab_server'] = $this->language->get('tab_server');
if (isset($this->error['warning'])) {
$data['error_warning'] = $this->error['warning'];
} else {
$data['error_warning'] = '';
}
if (isset($this->error['url'])) {
$data['error_url'] = $this->error['url'];
} else {
$data['error_url'] = '';
}
if (isset($this->error['meta_title'])) {
$data['error_meta_title'] = $this->error['meta_title'];
} else {
$data['error_meta_title'] = '';
}
if (isset($this->error['name'])) {
$data['error_name'] = $this->error['name'];
} else {
$data['error_name'] = '';
}
if (isset($this->error['owner'])) {
$data['error_owner'] = $this->error['owner'];
} else {
$data['error_owner'] = '';
}
if (isset($this->error['address'])) {
$data['error_address'] = $this->error['address'];
} else {
$data['error_address'] = '';
}
if (isset($this->error['email'])) {
$data['error_email'] = $this->error['email'];
} else {
$data['error_email'] = '';
}
if (isset($this->error['telephone'])) {
$data['error_telephone'] = $this->error['telephone'];
} else {
$data['error_telephone'] = '';
}
if (isset($this->error['customer_group_display'])) {
$data['error_customer_group_display'] = $this->error['customer_group_display'];
} else {
$data['error_customer_group_display'] = '';
}
$data['breadcrumbs'] = array();
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], true)
);
$data['breadcrumbs'][] = array(
'text' => $this->language->get('heading_title'),
'href' => $this->url->link('setting/store', 'token=' . $this->session->data['token'], true)
);
if (!isset($this->request->get['store_id'])) {
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_settings'),
'href' => $this->url->link('setting/store/add', 'token=' . $this->session->data['token'], true)
);
} else {
$data['breadcrumbs'][] = array(
'text' => $this->language->get('text_settings'),
'href' => $this->url->link('setting/store/edit', 'token=' . $this->session->data['token'] . '&store_id=' . $this->request->get['store_id'], true)
);
}
if (isset($this->session->data['success'])) {
$data['success'] = $this->session->data['success'];
unset($this->session->data['success']);
} else {
$data['success'] = '';
}
if (!isset($this->request->get['store_id'])) {
$data['action'] = $this->url->link('setting/store/add', 'token=' . $this->session->data['token'], true);
} else {
$data['action'] = $this->url->link('setting/store/edit', 'token=' . $this->session->data['token'] . '&store_id=' . $this->request->get['store_id'], true);
}
$data['cancel'] = $this->url->link('setting/store', 'token=' . $this->session->data['token'], true);
if (isset($this->request->get['store_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
$this->load->model('setting/setting');
$store_info = $this->model_setting_setting->getSetting('config', $this->request->get['store_id']);
}
$data['token'] = $this->session->data['token'];
if (isset($this->request->post['config_url'])) {
$data['config_url'] = $this->request->post['config_url'];
} elseif (isset($store_info['config_url'])) {
$data['config_url'] = $store_info['config_url'];
} else {
$data['config_url'] = '';
}
if (isset($this->request->post['config_ssl'])) {
$data['config_ssl'] = $this->request->post['config_ssl'];
} elseif (isset($store_info['config_ssl'])) {
$data['config_ssl'] = $store_info['config_ssl'];
} else {
$data['config_ssl'] = '';
}
if (isset($this->request->post['config_meta_title'])) {
$data['config_meta_title'] = $this->request->post['config_meta_title'];
} elseif (isset($store_info['config_meta_title'])) {
$data['config_meta_title'] = $store_info['config_meta_title'];
} else {
$data['config_meta_title'] = '';
}
if (isset($this->request->post['config_meta_description'])) {
$data['config_meta_description'] = $this->request->post['config_meta_description'];
} elseif (isset($store_info['config_meta_description'])) {
$data['config_meta_description'] = $store_info['config_meta_description'];
} else {
$data['config_meta_description'] = '';
}
if (isset($this->request->post['config_meta_keyword'])) {
$data['config_meta_keyword'] = $this->request->post['config_meta_keyword'];
} elseif (isset($store_info['config_meta_keyword'])) {
$data['config_meta_keyword'] = $store_info['config_meta_keyword'];
} else {
$data['config_meta_keyword'] = '';
}
if (isset($this->request->post['config_theme'])) {
$data['config_theme'] = $this->request->post['config_theme'];
} elseif (isset($store_info['config_theme'])) {
$data['config_theme'] = $store_info['config_theme'];
} else {
$data['config_theme'] = '';
}
$data['themes'] = array();
$this->load->model('extension/extension');
$extensions = $this->model_extension_extension->getInstalled('theme');
foreach ($extensions as $code) {
$this->load->language('theme/' . $code);
$data['themes'][] = array(
'text' => $this->language->get('heading_title'),
'value' => $code
);
}
if (isset($this->request->post['config_layout_id'])) {
$data['config_layout_id'] = $this->request->post['config_layout_id'];
} elseif (isset($store_info['config_layout_id'])) {
$data['config_layout_id'] = $store_info['config_layout_id'];
} else {
$data['config_layout_id'] = '';
}
$this->load->model('design/layout');
$data['layouts'] = $this->model_design_layout->getLayouts();
if (isset($this->request->post['config_name'])) {
$data['config_name'] = $this->request->post['config_name'];
} elseif (isset($store_info['config_name'])) {
$data['config_name'] = $store_info['config_name'];
} else {
$data['config_name'] = '';
}
if (isset($this->request->post['config_owner'])) {
$data['config_owner'] = $this->request->post['config_owner'];
} elseif (isset($store_info['config_owner'])) {
$data['config_owner'] = $store_info['config_owner'];
} else {
$data['config_owner'] = '';
}
if (isset($this->request->post['config_address'])) {
$data['config_address'] = $this->request->post['config_address'];
} elseif (isset($store_info['config_address'])) {
$data['config_address'] = $store_info['config_address'];
} else {
$data['config_address'] = '';
}
if (isset($this->request->post['config_geocode'])) {
$data['config_geocode'] = $this->request->post['config_geocode'];
} elseif (isset($store_info['config_geocode'])) {
$data['config_geocode'] = $store_info['config_geocode'];
} else {
$data['config_geocode'] = '';
}
if (isset($this->request->post['config_email'])) {
$data['config_email'] = $this->request->post['config_email'];
} elseif (isset($store_info['config_email'])) {
$data['config_email'] = $store_info['config_email'];
} else {
$data['config_email'] = '';
}
if (isset($this->request->post['config_telephone'])) {
$data['config_telephone'] = $this->request->post['config_telephone'];
} elseif (isset($store_info['config_telephone'])) {
$data['config_telephone'] = $store_info['config_telephone'];
} else {
$data['config_telephone'] = '';
}
if (isset($this->request->post['config_fax'])) {
$data['config_fax'] = $this->request->post['config_fax'];
} elseif (isset($store_info['config_fax'])) {
$data['config_fax'] = $store_info['config_fax'];
} else {
$data['config_fax'] = '';
}
if (isset($this->request->post['config_image'])) {
$data['config_image'] = $this->request->post['config_image'];
} elseif (isset($store_info['config_image'])) {
$data['config_image'] = $store_info['config_image'];
} else {
$data['config_image'] = '';
}
$this->load->model('tool/image');
if (isset($this->request->post['config_image']) && is_file(DIR_IMAGE . $this->request->post['config_image'])) {
$data['thumb'] = $this->model_tool_image->resize($this->request->post['config_image'], 100, 100);
} elseif (isset($store_info['config_image']) && is_file(DIR_IMAGE . $store_info['config_image'])) {
$data['thumb'] = $this->model_tool_image->resize($store_info['config_image'], 100, 100);
} else {
$data['thumb'] = $this->model_tool_image->resize('no_image.png', 100, 100);
}
$data['placeholder'] = $this->model_tool_image->resize('no_image.png', 100, 100);
if (isset($this->request->post['config_open'])) {
$data['config_open'] = $this->request->post['config_open'];
} elseif (isset($store_info['config_open'])) {
$data['config_open'] = $store_info['config_open'];
} else {
$data['config_open'] = '';
}
if (isset($this->request->post['config_comment'])) {
$data['config_comment'] = $this->request->post['config_comment'];
} elseif (isset($store_info['config_comment'])) {
$data['config_comment'] = $store_info['config_comment'];
} else {
$data['config_comment'] = '';
}
$this->load->model('localisation/location');
$data['locations'] = $this->model_localisation_location->getLocations();
if (isset($this->request->post['config_location'])) {
$data['config_location'] = $this->request->post['config_location'];
} elseif ($this->config->get('config_location')) {
$data['config_location'] = $this->config->get('config_location');
} else {
$data['config_location'] = array();
}
if (isset($this->request->post['config_country_id'])) {
$data['config_country_id'] = $this->request->post['config_country_id'];
} elseif (isset($store_info['config_country_id'])) {
$data['config_country_id'] = $store_info['config_country_id'];
} else {
$data['config_country_id'] = $this->config->get('config_country_id');
}
$this->load->model('localisation/country');
$data['countries'] = $this->model_localisation_country->getCountries();
if (isset($this->request->post['config_zone_id'])) {
$data['config_zone_id'] = $this->request->post['config_zone_id'];
} elseif (isset($store_info['config_zone_id'])) {
$data['config_zone_id'] = $store_info['config_zone_id'];
} else {
$data['config_zone_id'] = $this->config->get('config_zone_id');
}
if (isset($this->request->post['config_language'])) {
$data['config_language'] = $this->request->post['config_language'];
} elseif (isset($store_info['config_language'])) {
$data['config_language'] = $store_info['config_language'];
} else {
$data['config_language'] = $this->config->get('config_language');
}
$this->load->model('localisation/language');
$data['languages'] = $this->model_localisation_language->getLanguages();
if (isset($this->request->post['config_currency'])) {
$data['config_currency'] = $this->request->post['config_currency'];
} elseif (isset($store_info['config_currency'])) {
$data['config_currency'] = $store_info['config_currency'];
} else {
$data['config_currency'] = $this->config->get('config_currency');
}
$this->load->model('localisation/currency');
$data['currencies'] = $this->model_localisation_currency->getCurrencies();
if (isset($this->request->post['config_tax'])) {
$data['config_tax'] = $this->request->post['config_tax'];
} elseif (isset($store_info['config_tax'])) {
$data['config_tax'] = $store_info['config_tax'];
} else {
$data['config_tax'] = '';
}
if (isset($this->request->post['config_tax_default'])) {
$data['config_tax_default'] = $this->request->post['config_tax_default'];
} elseif (isset($store_info['config_tax_default'])) {
$data['config_tax_default'] = $store_info['config_tax_default'];
} else {
$data['config_tax_default'] = '';
}
if (isset($this->request->post['config_tax_customer'])) {
$data['config_tax_customer'] = $this->request->post['config_tax_customer'];
} elseif (isset($store_info['config_tax_customer'])) {
$data['config_tax_customer'] = $store_info['config_tax_customer'];
} else {
$data['config_tax_customer'] = '';
}
if (isset($this->request->post['config_customer_group_id'])) {
$data['config_customer_group_id'] = $this->request->post['config_customer_group_id'];
} elseif (isset($store_info['config_customer_group_id'])) {
$data['config_customer_group_id'] = $store_info['config_customer_group_id'];
} else {
$data['config_customer_group_id'] = '';
}
$this->load->model('customer/customer_group');
$data['customer_groups'] = $this->model_customer_customer_group->getCustomerGroups();
if (isset($this->request->post['config_customer_group_display'])) {
$data['config_customer_group_display'] = $this->request->post['config_customer_group_display'];
} elseif (isset($store_info['config_customer_group_display'])) {
$data['config_customer_group_display'] = $store_info['config_customer_group_display'];
} else {
$data['config_customer_group_display'] = array();
}
if (isset($this->request->post['config_customer_price'])) {
$data['config_customer_price'] = $this->request->post['config_customer_price'];
} elseif (isset($store_info['config_customer_price'])) {
$data['config_customer_price'] = $store_info['config_customer_price'];
} else {
$data['config_customer_price'] = '';
}
if (isset($this->request->post['config_account_id'])) {
$data['config_account_id'] = $this->request->post['config_account_id'];
} elseif (isset($store_info['config_account_id'])) {
$data['config_account_id'] = $store_info['config_account_id'];
} else {
$data['config_account_id'] = '';
}
$this->load->model('catalog/information');
$data['informations'] = $this->model_catalog_information->getInformations();
if (isset($this->request->post['config_cart_weight'])) {
$data['config_cart_weight'] = $this->request->post['config_cart_weight'];
} elseif (isset($store_info['config_cart_weight'])) {
$data['config_cart_weight'] = $store_info['config_cart_weight'];
} else {
$data['config_cart_weight'] = '';
}
if (isset($this->request->post['config_checkout_guest'])) {
$data['config_checkout_guest'] = $this->request->post['config_checkout_guest'];
} elseif (isset($store_info['config_checkout_guest'])) {
$data['config_checkout_guest'] = $store_info['config_checkout_guest'];
} else {
$data['config_checkout_guest'] = '';
}
if (isset($this->request->post['config_checkout_id'])) {
$data['config_checkout_id'] = $this->request->post['config_checkout_id'];
} elseif (isset($store_info['config_checkout_id'])) {
$data['config_checkout_id'] = $store_info['config_checkout_id'];
} else {
$data['config_checkout_id'] = '';
}
if (isset($this->request->post['config_order_status_id'])) {
$data['config_order_status_id'] = $this->request->post['config_order_status_id'];
} elseif (isset($store_info['config_order_status_id'])) {
$data['config_order_status_id'] = $store_info['config_order_status_id'];
} else {
$data['config_order_status_id'] = '';
}
$this->load->model('localisation/order_status');
$data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses();
if (isset($this->request->post['config_stock_display'])) {
$data['config_stock_display'] = $this->request->post['config_stock_display'];
} elseif (isset($store_info['config_stock_display'])) {
$data['config_stock_display'] = $store_info['config_stock_display'];
} else {
$data['config_stock_display'] = '';
}
if (isset($this->request->post['config_stock_checkout'])) {
$data['config_stock_checkout'] = $this->request->post['config_stock_checkout'];
} elseif (isset($store_info['config_stock_checkout'])) {
$data['config_stock_checkout'] = $store_info['config_stock_checkout'];
} else {
$data['config_stock_checkout'] = '';
}
if (isset($this->request->post['config_logo'])) {
$data['config_logo'] = $this->request->post['config_logo'];
} elseif (isset($store_info['config_logo'])) {
$data['config_logo'] = $store_info['config_logo'];
} else {
$data['config_logo'] = '';
}
if (isset($this->request->post['config_logo']) && is_file(DIR_IMAGE . $this->request->post['config_logo'])) {
$data['logo'] = $this->model_tool_image->resize($this->request->post['config_logo'], 100, 100);
} elseif (isset($store_info['config_logo']) && is_file(DIR_IMAGE . $store_info['config_logo'])) {
$data['logo'] = $this->model_tool_image->resize($store_info['config_logo'], 100, 100);
} else {
$data['logo'] = $this->model_tool_image->resize('no_image.png', 100, 100);
}
$data['placeholder'] = $this->model_tool_image->resize('no_image.png', 100, 100);
if (isset($this->request->post['config_icon'])) {
$data['config_icon'] = $this->request->post['config_icon'];
} elseif (isset($store_info['config_icon'])) {
$data['config_icon'] = $store_info['config_icon'];
} else {
$data['config_icon'] = '';
}
if (isset($this->request->post['config_icon']) && is_file(DIR_IMAGE . $this->request->post['config_icon'])) {
$data['icon'] = $this->model_tool_image->resize($this->request->post['config_icon'], 100, 100);
} elseif (isset($store_info['config_icon']) && is_file(DIR_IMAGE . $store_info['config_icon'])) {
$data['icon'] = $this->model_tool_image->resize($store_info['config_icon'], 100, 100);
} else {
$data['icon'] = $this->model_tool_image->resize('no_image.png', 100, 100);
}
if (isset($this->request->post['config_secure'])) {
$data['config_secure'] = $this->request->post['config_secure'];
} elseif (isset($store_info['config_secure'])) {
$data['config_secure'] = $store_info['config_secure'];
} else {
$data['config_secure'] = '';
}
$data['header'] = $this->load->controller('common/header');
$data['column_left'] = $this->load->controller('common/column_left');
$data['footer'] = $this->load->controller('common/footer');
$this->response->setOutput($this->load->view('setting/store_form', $data));
}
protected function validateForm() {
if (!$this->user->hasPermission('modify', 'setting/store')) {
$this->error['warning'] = $this->language->get('error_permission');
}
if (!$this->request->post['config_url']) {
$this->error['url'] = $this->language->get('error_url');
}
if (!$this->request->post['config_meta_title']) {
$this->error['meta_title'] = $this->language->get('error_meta_title');
}
if (!$this->request->post['config_name']) {
$this->error['name'] = $this->language->get('error_name');
}
if ((utf8_strlen($this->request->post['config_owner']) < 3) || (utf8_strlen($this->request->post['config_owner']) > 64)) {
$this->error['owner'] = $this->language->get('error_owner');
}
if ((utf8_strlen($this->request->post['config_address']) < 3) || (utf8_strlen($this->request->post['config_address']) > 256)) {
$this->error['address'] = $this->language->get('error_address');
}
if ((utf8_strlen($this->request->post['config_email']) > 96) || !filter_var($this->request->post['config_email'], FILTER_VALIDATE_EMAIL)) {
$this->error['email'] = $this->language->get('error_email');
}
if ((utf8_strlen($this->request->post['config_telephone']) < 3) || (utf8_strlen($this->request->post['config_telephone']) > 32)) {
$this->error['telephone'] = $this->language->get('error_telephone');
}
if (!empty($this->request->post['config_customer_group_display']) && !in_array($this->request->post['config_customer_group_id'], $this->request->post['config_customer_group_display'])) {
$this->error['customer_group_display'] = $this->language->get('error_customer_group_display');
}
if ($this->error && !isset($this->error['warning'])) {
$this->error['warning'] = $this->language->get('error_warning');
}
return !$this->error;
}
protected function validateDelete() {
if (!$this->user->hasPermission('modify', 'setting/store')) {
$this->error['warning'] = $this->language->get('error_permission');
}
$this->load->model('sale/order');
foreach ($this->request->post['selected'] as $store_id) {
if (!$store_id) {
$this->error['warning'] = $this->language->get('error_default');
}
$store_total = $this->model_sale_order->getTotalOrdersByStoreId($store_id);
if ($store_total) {
$this->error['warning'] = sprintf($this->language->get('error_store'), $store_total);
}
}
return !$this->error;
}
}