Added in: release-2026-03
The top-level mediaCenter project config property has been added to store any configurations which affect all media types. At the moment this only includes the Usage Log feature.
The existing configuration of the Media Library is somewhat fragmented:
- Many configuration properties which affect the Media Center are defined within the individual Media Types.
- Some configurations are stored in Editor Settings, such as Dashboard Cards and Prefilling Behavior.
- Dashboards are configured in the same array as document dashboards. There is also a guide for Media Library Dashboard Configuration.
The mediaCenter project config property can be defined as follows:
mediaCenter: {
usageLog: {
purposes: [
{
handle: 'print',
label: {
en: 'Print',
de: 'Druck'
},
paramsSchema: [
{
handle: 'page',
type: 'li-integer',
ui: {
label: {
en: 'Page',
de: 'Seite'
}
}
}
]
}
]
}
}
Usage Log
Added in: release-2026-03
Please see the Usage Log section of the Media Library guide for further information.