Breaking: #102108 - TCA [types][bitmask_*]
settings
See forge#102108
Description
Handling of two settings has been removed from the TYPO3 Core codebase:
Impact
These two fields allowed to set record "sub types" based on a record
bitmask field, typically 'type' => 'check'
or 'type' => 'radio'
.
This has been removed, the settings are not considered anymore when rendering records in the backend record editing interface.
Affected installations
Both settings have been used very rarely: Neither Core nor published TER extensions revealed a single usage. The extension scanner will find affected extensions.
Migration
In case extensions still use these two rather obscure settings, they should
switch to casual $GLOBALS
fields instead,
which can be powered by columns based on string values.
Note the overall "subtype" record logic of TCA is within an ongoing process to
be removed in TYPO3 v13, so the basic thinking should be: There is a record, and its
details can be configured using $GLOBALS
,
and that's it. Extensions using "sub types" or this bitmask detail need to simplify
and eventually deliver according upgrade wizards to adapt existing records.