set customer language to cookie

This commit is contained in:
Ibnu Maksum
2024-08-16 09:35:25 +07:00
parent 1c82378837
commit cf4f708f83
2 changed files with 24 additions and 0 deletions

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}