24 hour timeformat
Permalink
I do not find anyway to set a 24 hour timeformat in CC5. There is nothing in the help screen, anyone who has a solution?
Thanks,
Kai,
Oslo, Norway
Thanks,
Kai,
Oslo, Norway
Hi!
Just add a rule to the /config/site.php file:
Regards
Just add a rule to the /config/site.php file:
define('DATE_FORM_HELPER_FORMAT_HOUR', '24'); // can be 12 or 24
Regards
Using the config/site.php, seems easy and simple. On place, one global area :-)
Hi, where can this be changed in the current Concrete5 version?
Thanks,
Luca
Thanks,
Luca
First, let's say you want to display a 24-hour time for a page was posted. Do something like this:
You could also use "H" if you want leading zeros.
Or, you could just use basic PHP to make whatever format you want.
Here is a link to PHP time and date formats:
http://php.net/manual/en/function.date.php...
Hope that helps.