set customer language to cookie

This commit is contained in:
Ibnu Maksum 2024-08-16 09:35:25 +07:00
parent 1c82378837
commit cf4f708f83
No known key found for this signature in database
GPG Key ID: 7FC82848810579E5
2 changed files with 24 additions and 0 deletions

View File

@ -134,6 +134,8 @@ if ((!empty($radius_user) && $config['radius_enable']) || _post('radius_enable')
// Check if the user has selected a language
if (!empty($_SESSION['user_language'])) {
$config['language'] = $_SESSION['user_language'];
}else if (!empty($_COOKIE['user_language'])) {
$config['language'] = $_COOKIE['user_language'];
}
if (empty($_SESSION['Lang'])) {

View File

@ -108,6 +108,28 @@
})
});
});
function setCookie(name, value, days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + (value || "") + expires + "; path=/";
}
function getCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
}
setCookie('user_language', '{/literal}{$user_language}{literal}', 365);
</script>
{/literal}