5.7 Change Format | Date & Time

Permalink
I've been searching for quite a while to find out where in the concrete5 5.7.4.2 core to change the date and time format, to no avail. Where in the core do you do this? It's got to be a config file somewhere because it's not a setting in the CMS itself.

For example:
"Jun 16, 2015, 4:20 PM" is what it is currently set to display when using $date.

Instead of date being formatted like the above, I would like to be able to format the date / time in a config file to whatever I want depending on client needs - preferably to something like this:

"June 16, 2015" - or - "Friday June 16, 2015"

This way I can update the time preference at any time on a per client / per CMS basis. Please let me know how to update this much needed functionality.

Thanks in advance, everyone!

creativesolutions
 
WillemAnchor replied on at Permalink Reply
WillemAnchor
setting the language and time-zone for a user (or site) would do that
and programmaticaly, have a look at

$date = Core::make('date');
$date->formatPrettyDateTime($yourdate);
creativesolutions replied on at Permalink Reply
creativesolutions
Thanks for the speedy reply!

Where in the core do I make these changes? In 5.6+ it was easy. All you had to do was modify the site.php, but 5.7 is completely different.
WillemAnchor replied on at Permalink Reply
WillemAnchor
In the dashboard system settings :)

And for the date helper functions...I just left my desktop but i think they are in src/core/service or something like that
Have fun :)