blob: 82e2ab089cfbba5d90a20310128d9046cf61ac4a (
plain)
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
|
<?php
class ControllerApiCoupon extends Controller {
public function index() {
$this->load->language('api/coupon');
// Delete past coupon in case there is an error
unset($this->session->data['coupon']);
$json = array();
if (!isset($this->session->data['api_id'])) {
$json['error'] = $this->language->get('error_permission');
} else {
$this->load->model('extension/total/coupon');
if (isset($this->request->post['coupon'])) {
$coupon = $this->request->post['coupon'];
} else {
$coupon = '';
}
$coupon_info = $this->model_extension_total_coupon->getCoupon($coupon);
if ($coupon_info) {
$this->session->data['coupon'] = $this->request->post['coupon'];
$json['success'] = $this->language->get('text_success');
} else {
$json['error'] = $this->language->get('error_coupon');
}
}
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}
}
|