blob: 3e9ca09165b14db7d4742eaa7cc7d002aeb22acf (
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
|
<?php
class ControllerApiCurrency extends Controller {
public function index() {
$this->load->language('api/currency');
$json = array();
if (!isset($this->session->data['api_id'])) {
$json['error'] = $this->language->get('error_permission');
} else {
$this->load->model('localisation/currency');
$currency_info = $this->model_localisation_currency->getCurrencyByCode($this->request->post['currency']);
if ($currency_info) {
$this->session->data['currency'] = $this->request->post['currency'];
unset($this->session->data['shipping_method']);
unset($this->session->data['shipping_methods']);
$json['success'] = $this->language->get('text_success');
} else {
$json['error'] = $this->language->get('error_currency');
}
}
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}
}
|