This documentation is for a version that has reached its End Of Life. Such versions are no longer supported and don't receive security updates. Consider updating to a newer version.
4.2. Update configuration¶
ezpublish
configuration key¶
The main YAML configuration key is now ezplatform
instead of ezpublish
.
You need to change your configuration files to make use of the new key. For example:
Use:
1 2 3 4 |
|
instead of:
1 2 3 4 |
|
Resolving settings¶
If you used dynamic settings (through $setting$
),
or got settings from the ConfigResolver in a class constructor,
you now need to rewrite your code to inject the ConfigResolver and get the relevant setting:
Use:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
instead of:
1 2 3 4 5 6 7 8 9 |
|