99 lines
2.3 KiB
PHP
99 lines
2.3 KiB
PHP
<?php
|
|
namespace Opencart\Admin\Controller\Common;
|
|
/**
|
|
* Class Language
|
|
*
|
|
* @package Opencart\Admin\Controller\Common
|
|
*/
|
|
class Language extends \Opencart\System\Engine\Controller {
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function index(): string {
|
|
$data['languages'] = [];
|
|
|
|
$this->load->model('localisation/language');
|
|
|
|
$results = $this->model_localisation_language->getLanguages();
|
|
|
|
foreach ($results as $result) {
|
|
$data['languages'][] = [
|
|
'name' => $result['name'],
|
|
'code' => $result['code'],
|
|
'image' => $result['image']
|
|
];
|
|
}
|
|
|
|
if (isset($this->request->cookie['language'])) {
|
|
$data['code'] = $this->request->cookie['language'];
|
|
} else {
|
|
$data['code'] = $this->config->get('config_language');
|
|
}
|
|
|
|
// Redirect
|
|
$url_data = $this->request->get;
|
|
|
|
if (isset($url_data['route'])) {
|
|
$route = $url_data['route'];
|
|
} else {
|
|
$route = 'common/dashboard';
|
|
}
|
|
|
|
unset($url_data['route']);
|
|
|
|
$url = '';
|
|
|
|
if ($url_data) {
|
|
$url .= '&' . urldecode(http_build_query($url_data));
|
|
}
|
|
|
|
$data['redirect'] = $this->url->link($route, $url);
|
|
|
|
$data['user_token'] = $this->session->data['user_token'];
|
|
|
|
return $this->load->view('common/language', $data);
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function save(): void {
|
|
$this->load->language('common/language');
|
|
|
|
$json = [];
|
|
|
|
if (isset($this->request->post['code'])) {
|
|
$code = $this->request->post['code'];
|
|
} else {
|
|
$code = '';
|
|
}
|
|
|
|
if (isset($this->request->post['redirect'])) {
|
|
$redirect = htmlspecialchars_decode($this->request->post['redirect'], ENT_COMPAT);
|
|
} else {
|
|
$redirect = '';
|
|
}
|
|
|
|
$this->load->model('localisation/language');
|
|
|
|
$language_info = $this->model_localisation_language->getLanguageByCode($code);
|
|
|
|
if (!$language_info) {
|
|
$json['error'] = $this->language->get('error_language');
|
|
}
|
|
|
|
if (!$json) {
|
|
setcookie('language', $code, time() + 60 * 60 * 24 * 365 * 10);
|
|
|
|
if ($redirect && substr($redirect, 0, strlen($this->config->get('config_url'))) == $this->config->get('config_url')) {
|
|
$json['redirect'] = $redirect;
|
|
} else {
|
|
$json['redirect'] = $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'], true);
|
|
}
|
|
}
|
|
|
|
$this->response->addHeader('Content-Type: application/json');
|
|
$this->response->setOutput(json_encode($json));
|
|
}
|
|
}
|