1: | <?php
|
2: | namespace Opencart\Admin\Controller\Sale;
|
3: | |
4: | |
5: | |
6: | |
7: |
|
8: | class VoucherTheme extends \Opencart\System\Engine\Controller {
|
9: | |
10: | |
11: | |
12: | |
13: |
|
14: | public function index(): void {
|
15: | $this->load->language('sale/voucher_theme');
|
16: |
|
17: | $this->document->setTitle($this->language->get('heading_title'));
|
18: |
|
19: | $url = '';
|
20: |
|
21: | if (isset($this->request->get['sort'])) {
|
22: | $url .= '&sort=' . $this->request->get['sort'];
|
23: | }
|
24: |
|
25: | if (isset($this->request->get['order'])) {
|
26: | $url .= '&order=' . $this->request->get['order'];
|
27: | }
|
28: |
|
29: | if (isset($this->request->get['page'])) {
|
30: | $url .= '&page=' . $this->request->get['page'];
|
31: | }
|
32: |
|
33: | $data['breadcrumbs'] = [];
|
34: |
|
35: | $data['breadcrumbs'][] = [
|
36: | 'text' => $this->language->get('text_home'),
|
37: | 'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
|
38: | ];
|
39: |
|
40: | $data['breadcrumbs'][] = [
|
41: | 'text' => $this->language->get('heading_title'),
|
42: | 'href' => $this->url->link('sale/voucher_theme', 'user_token=' . $this->session->data['user_token'] . $url)
|
43: | ];
|
44: |
|
45: | $data['add'] = $this->url->link('sale/voucher_theme.form', 'user_token=' . $this->session->data['user_token'] . $url);
|
46: | $data['delete'] = $this->url->link('sale/voucher_theme.delete', 'user_token=' . $this->session->data['user_token']);
|
47: |
|
48: | $data['list'] = $this->getList();
|
49: |
|
50: | $data['user_token'] = $this->session->data['user_token'];
|
51: |
|
52: | $data['header'] = $this->load->controller('common/header');
|
53: | $data['column_left'] = $this->load->controller('common/column_left');
|
54: | $data['footer'] = $this->load->controller('common/footer');
|
55: |
|
56: | $this->response->setOutput($this->load->view('sale/voucher_theme', $data));
|
57: | }
|
58: |
|
59: | |
60: | |
61: | |
62: | |
63: |
|
64: | public function list(): void {
|
65: | $this->load->language('sale/voucher_theme');
|
66: |
|
67: | $this->response->setOutput($this->getList());
|
68: | }
|
69: |
|
70: | |
71: | |
72: | |
73: | |
74: |
|
75: | protected function getList(): string {
|
76: | if (isset($this->request->get['sort'])) {
|
77: | $sort = (string)$this->request->get['sort'];
|
78: | } else {
|
79: | $sort = 'vtd.name';
|
80: | }
|
81: |
|
82: | if (isset($this->request->get['order'])) {
|
83: | $order = (string)$this->request->get['order'];
|
84: | } else {
|
85: | $order = 'ASC';
|
86: | }
|
87: |
|
88: | if (isset($this->request->get['page'])) {
|
89: | $page = (int)$this->request->get['page'];
|
90: | } else {
|
91: | $page = 1;
|
92: | }
|
93: |
|
94: | $url = '';
|
95: |
|
96: | if (isset($this->request->get['sort'])) {
|
97: | $url .= '&sort=' . $this->request->get['sort'];
|
98: | }
|
99: |
|
100: | if (isset($this->request->get['order'])) {
|
101: | $url .= '&order=' . $this->request->get['order'];
|
102: | }
|
103: |
|
104: | if (isset($this->request->get['page'])) {
|
105: | $url .= '&page=' . $this->request->get['page'];
|
106: | }
|
107: |
|
108: | $data['action'] = $this->url->link('sale/voucher_theme.list', 'user_token=' . $this->session->data['user_token'] . $url);
|
109: |
|
110: | $data['voucher_themes'] = [];
|
111: |
|
112: | $filter_data = [
|
113: | 'sort' => $sort,
|
114: | 'order' => $order,
|
115: | 'start' => ($page - 1) * $this->config->get('config_pagination_admin'),
|
116: | 'limit' => $this->config->get('config_pagination_admin')
|
117: | ];
|
118: |
|
119: | $this->load->model('sale/voucher_theme');
|
120: |
|
121: | $results = $this->model_sale_voucher_theme->getVoucherThemes($filter_data);
|
122: |
|
123: | foreach ($results as $result) {
|
124: | $data['voucher_themes'][] = [
|
125: | 'voucher_theme_id' => $result['voucher_theme_id'],
|
126: | 'name' => $result['name'],
|
127: | 'edit' => $this->url->link('sale/voucher_theme.form', 'user_token=' . $this->session->data['user_token'] . '&voucher_theme_id=' . $result['voucher_theme_id'] . $url)
|
128: | ];
|
129: | }
|
130: |
|
131: | $url = '';
|
132: |
|
133: | if ($order == 'ASC') {
|
134: | $url .= '&order=DESC';
|
135: | } else {
|
136: | $url .= '&order=ASC';
|
137: | }
|
138: |
|
139: | $data['sort_name'] = $this->url->link('sale/voucher_theme.list', 'user_token=' . $this->session->data['user_token'] . '&sort=vtd.name' . $url);
|
140: |
|
141: | $url = '';
|
142: |
|
143: | if (isset($this->request->get['sort'])) {
|
144: | $url .= '&sort=' . $this->request->get['sort'];
|
145: | }
|
146: |
|
147: | if (isset($this->request->get['order'])) {
|
148: | $url .= '&order=' . $this->request->get['order'];
|
149: | }
|
150: |
|
151: | $voucher_theme_total = $this->model_sale_voucher_theme->getTotalVoucherThemes();
|
152: |
|
153: | $data['pagination'] = $this->load->controller('common/pagination', [
|
154: | 'total' => $voucher_theme_total,
|
155: | 'page' => $page,
|
156: | 'limit' => $this->config->get('config_pagination_admin'),
|
157: | 'url' => $this->url->link('sale/voucher_theme.list', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}')
|
158: | ]);
|
159: |
|
160: | $data['results'] = sprintf($this->language->get('text_pagination'), ($voucher_theme_total) ? (($page - 1) * $this->config->get('config_pagination_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination_admin')) > ($voucher_theme_total - $this->config->get('config_pagination_admin'))) ? $voucher_theme_total : ((($page - 1) * $this->config->get('config_pagination_admin')) + $this->config->get('config_pagination_admin')), $voucher_theme_total, ceil($voucher_theme_total / $this->config->get('config_pagination_admin')));
|
161: |
|
162: | $data['sort'] = $sort;
|
163: | $data['order'] = $order;
|
164: |
|
165: | return $this->load->view('sale/voucher_theme_list', $data);
|
166: | }
|
167: |
|
168: | |
169: | |
170: | |
171: | |
172: |
|
173: | public function form(): void {
|
174: | $this->load->language('sale/voucher_theme');
|
175: |
|
176: | $this->document->setTitle($this->language->get('heading_title'));
|
177: |
|
178: | $data['text_form'] = !isset($this->request->get['voucher_theme_id']) ? $this->language->get('text_add') : $this->language->get('text_edit');
|
179: |
|
180: | $url = '';
|
181: |
|
182: | if (isset($this->request->get['sort'])) {
|
183: | $url .= '&sort=' . $this->request->get['sort'];
|
184: | }
|
185: |
|
186: | if (isset($this->request->get['order'])) {
|
187: | $url .= '&order=' . $this->request->get['order'];
|
188: | }
|
189: |
|
190: | if (isset($this->request->get['page'])) {
|
191: | $url .= '&page=' . $this->request->get['page'];
|
192: | }
|
193: |
|
194: | $data['breadcrumbs'] = [];
|
195: |
|
196: | $data['breadcrumbs'][] = [
|
197: | 'text' => $this->language->get('text_home'),
|
198: | 'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
|
199: | ];
|
200: |
|
201: | $data['breadcrumbs'][] = [
|
202: | 'text' => $this->language->get('heading_title'),
|
203: | 'href' => $this->url->link('sale/voucher_theme', 'user_token=' . $this->session->data['user_token'] . $url)
|
204: | ];
|
205: |
|
206: | $data['save'] = $this->url->link('sale/voucher_theme.save', 'user_token=' . $this->session->data['user_token']);
|
207: | $data['back'] = $this->url->link('sale/voucher_theme', 'user_token=' . $this->session->data['user_token'] . $url);
|
208: |
|
209: | if (isset($this->request->get['voucher_theme_id'])) {
|
210: | $this->load->model('sale/voucher_theme');
|
211: |
|
212: | $voucher_theme_info = $this->model_sale_voucher_theme->getVoucherTheme($this->request->get['voucher_theme_id']);
|
213: | }
|
214: |
|
215: | if (isset($this->request->get['voucher_theme_id'])) {
|
216: | $data['voucher_theme_id'] = (int)$this->request->get['voucher_theme_id'];
|
217: | } else {
|
218: | $data['voucher_theme_id'] = 0;
|
219: | }
|
220: |
|
221: | $this->load->model('localisation/language');
|
222: |
|
223: | $data['languages'] = $this->model_localisation_language->getLanguages();
|
224: |
|
225: | if (!empty($voucher_theme_info)) {
|
226: | $data['voucher_theme_description'] = $this->model_sale_voucher_theme->getDescriptions($this->request->get['voucher_theme_id']);
|
227: | } else {
|
228: | $data['voucher_theme_description'] = [];
|
229: | }
|
230: |
|
231: | if (!empty($voucher_theme_info)) {
|
232: | $data['image'] = $voucher_theme_info['image'];
|
233: | } else {
|
234: | $data['image'] = '';
|
235: | }
|
236: |
|
237: | $this->load->model('tool/image');
|
238: |
|
239: | $data['placeholder'] = $this->model_tool_image->resize('no_image.png', $this->config->get('config_image_default_width'), $this->config->get('config_image_default_height'));
|
240: |
|
241: | if ($data['image'] && is_file(DIR_IMAGE . html_entity_decode($data['image'], ENT_QUOTES, 'UTF-8'))) {
|
242: | $data['thumb'] = $this->model_tool_image->resize($data['image'], $this->config->get('config_image_default_width'), $this->config->get('config_image_default_height'));
|
243: | } else {
|
244: | $data['thumb'] = $data['placeholder'];
|
245: | }
|
246: |
|
247: | $data['user_token'] = $this->session->data['user_token'];
|
248: |
|
249: | $data['header'] = $this->load->controller('common/header');
|
250: | $data['column_left'] = $this->load->controller('common/column_left');
|
251: | $data['footer'] = $this->load->controller('common/footer');
|
252: |
|
253: | $this->response->setOutput($this->load->view('sale/voucher_theme_form', $data));
|
254: | }
|
255: |
|
256: | |
257: | |
258: | |
259: | |
260: |
|
261: | public function save(): void {
|
262: | $this->load->language('sale/voucher_theme');
|
263: |
|
264: | $json = [];
|
265: |
|
266: | if (!$this->user->hasPermission('modify', 'sale/voucher_theme')) {
|
267: | $json['error']['warning'] = $this->language->get('error_permission');
|
268: | }
|
269: |
|
270: | foreach ($this->request->post['voucher_theme_description'] as $language_id => $value) {
|
271: | if ((oc_strlen($value['name']) < 3) || (oc_strlen($value['name']) > 32)) {
|
272: | $json['error']['name_' . $language_id] = $this->language->get('error_name');
|
273: | }
|
274: | }
|
275: |
|
276: | if (!$this->request->post['image']) {
|
277: | $json['error']['image'] = $this->language->get('error_image');
|
278: | }
|
279: |
|
280: | if (!$json) {
|
281: | $this->load->model('sale/voucher_theme');
|
282: |
|
283: | if (!$this->request->post['voucher_theme_id']) {
|
284: | $json['voucher_theme_id'] = $this->model_sale_voucher_theme->addVoucherTheme($this->request->post);
|
285: | } else {
|
286: | $this->model_sale_voucher_theme->editVoucherTheme($this->request->post['voucher_theme_id'], $this->request->post);
|
287: | }
|
288: |
|
289: | $json['success'] = $this->language->get('text_success');
|
290: | }
|
291: |
|
292: | $this->response->addHeader('Content-Type: application/json');
|
293: | $this->response->setOutput(json_encode($json));
|
294: | }
|
295: |
|
296: | |
297: | |
298: | |
299: | |
300: |
|
301: | public function delete(): void {
|
302: | $this->load->language('sale/voucher_theme');
|
303: |
|
304: | $json = [];
|
305: |
|
306: | if (isset($this->request->post['selected'])) {
|
307: | $selected = $this->request->post['selected'];
|
308: | } else {
|
309: | $selected = [];
|
310: | }
|
311: |
|
312: | if (!$this->user->hasPermission('modify', 'sale/voucher_theme')) {
|
313: | $json['error'] = $this->language->get('error_permission');
|
314: | }
|
315: |
|
316: | $this->load->model('sale/voucher');
|
317: |
|
318: | foreach ($selected as $voucher_theme_id) {
|
319: | $voucher_total = $this->model_sale_voucher->getTotalVouchersByVoucherThemeId($voucher_theme_id);
|
320: |
|
321: | if ($voucher_total) {
|
322: | $json['error'] = sprintf($this->language->get('error_voucher'), $voucher_total);
|
323: | }
|
324: | }
|
325: |
|
326: | if (!$json) {
|
327: | $this->load->model('sale/voucher_theme');
|
328: |
|
329: | foreach ($selected as $voucher_theme_id) {
|
330: | $this->model_sale_voucher_theme->deleteVoucherTheme($voucher_theme_id);
|
331: | }
|
332: |
|
333: | $json['success'] = $this->language->get('text_success');
|
334: | }
|
335: |
|
336: | $this->response->addHeader('Content-Type: application/json');
|
337: | $this->response->setOutput(json_encode($json));
|
338: | }
|
339: | }
|
340: | |