Actions
Bug #98322
closedIRRE fields have limited TCA-options concerning mm-tables
Start date:
2022-09-10
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
8.1
Tags:
tca table-auto-creation
Complexity:
Is Regression:
Sprint Focus:
Description
This code (of EXT:blog_example, table tx_blogexample_domain_model_person) should autocreate an mm-table with the field `fieldname` but it doesn't. The table is created but without that field.
'tags' => [ 'label' => 'LLL:EXT:blog_example/Resources/Private/Language/locallang_db.xlf:tx_blogexample_domain_model_person.tags', 'config' => [ 'type' => 'inline', 'foreign_table' => 'tx_blogexample_domain_model_tag', // needed by Extbase 'MM' => 'tx_blogexample_domain_model_tag_mm', 'MM_match_fields' => [ 'fieldname' => 'tags', ], 'appearance' => [ 'useCombination' => 1, 'useSortable' => 1, 'collapseAll' => 1, 'expandSingle' => 1, ], ], ], 'tags_special' => [ 'exclude' => true, 'label' => 'LLL:EXT:blog_example/Resources/Private/Language/locallang_db.xlf:tx_blogexample_domain_model_person.tags_special', 'config' => [ 'type' => 'inline', 'foreign_table' => 'tx_blogexample_domain_model_tag', // needed by Extbase 'MM' => 'tx_blogexample_domain_model_tag_mm', 'MM_match_fields' => [ 'fieldname' => 'tags_special', ], 'appearance' => [ 'useCombination' => 1, 'useSortable' => 1, 'collapseAll' => 1, 'expandSingle' => 1, ], ], ],
Actions