first commit

This commit is contained in:
Konstantin
2026-05-30 09:27:58 +03:00
commit de0344d218
2371 changed files with 661486 additions and 0 deletions
+30
View File
@@ -0,0 +1,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));
}
}