supseven / confuse
a (maybe) smarter way to write your TCA
v1.0.3
2020-01-08 15:03 UTC
Requires
- php: >=7.2
- typo3/cms-core: ^9.5 || ^10
This package is auto-updated.
Last update: 2026-03-09 05:07:48 UTC
README
a (maybe) smarter way to write your TCA
what it supposed to be
- write your TCA files with autocomplete
- maintain your TCA in a global file
what it is not supposed to be
- a well documented project by now
- a complete extension due to lack of time
use it like this in your TCA (overrides)
\Supseven\Confuse\Service\Tca\Create::getInstance()->addElement([
\Supseven\Confuse\Service\Tca\Elements\Check::create()
->setName('test')
->setExclude(true)
->setValue([
['', ''],
['.h1', 'h1'],
['.h2', 'h2'],
])
->build()
])->persist('tt_content');