Non U.S. date format
PermalinkBut you can always switch it back
And, you can also let the user choose it's language at login:
dashboard/system/basics/multilingual
Or even set the language for every user differently:
dashboard/users/search/view/1
This website stores cookies on your computer. These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media. To find out more about the cookies we use, see our Privacy Policy.
you can find it in the dashboard/system/basics/multilingual
In addition, you might also need to set the timezone:
/dashboard/system/basics/timezone
Programmers, take a look at the date helper:
use Core;
...
$date = Core::make('date');
$formattedDate = date->formatPrettyDateTime($value, $longDate = false, $withSeconds = false, $timezone = 'user')
There are more functions in 'date'that can be usefull like formatCustom() and formatDateTime()