Feature: #92942 - Allow icon overlay for newContentElementWizard elements
See forge#92942
Description
The new Content Element wizard within the page module now allows
to define an icon overlay for each wizard element using the new
TSconfig option
icon next to a defined
icon.
This is especially useful for custom content elements that use the
same
icon several times, but still have to be differentiated.
The full configuration path is
mod..
An example configuration could look like this:
mod.wizards.newContentElement.wizardItems {
common.elements {
my_element {
iconIdentifier = content-my-icon
iconOverlay = content-my-icon-overlay
title = LLL:EXT:my_extension/Resources/Private/Language/ContentTypes.xlf:my_element_title
description = LLL:EXT:my_extension/Resources/Private/Language/ContentTypes.xlf:my_element_description
tt_content_defValues {
CType = my_element
}
}
}
}
Copied!
Impact
It's now possible to define an
icon next to an
icon
for newContentElementWizard elements.