Feature: #465 - DateFormat in Backend Module
See Issue 465
Description
The backend module was refactored. The dateformat of the date input fields can be set in TypoScript.
EXT:cart/Configuration/TypoScript/constants.typoscript
plugin.tx_cart {
settings {
backend {
dateFormat = Y-m-d
}
}
}
Copied!
Impact
- Before this the dates in the backend were always in the format
d.
, now itm. Y -
is
Y-
by default. The change affect only the formatting in the backend, not the storage format.m- d Migration =========
To get the old formatting you need to overwrite the above shown TypoScript constants:
EXT:sitepackage/Configuration/TypoScript/constants.typoscriptplugin.tx_cart { settings { backend { dateFormat = d.m.Y } } }
Copied!