.. include:: /Includes.rst.txt .. _feature-102067-1695985288: ================================================= Feature: #102067 - PSR-14 BeforeTcaOverridesEvent ================================================= See :issue:`102067` Description =========== A new PSR-14 event :php:`\TYPO3\CMS\Core\Configuration\Event\BeforeTcaOverridesEvent` has been introduced, enabling developers to listen to the state between loaded base TCA and merging of TCA overrides. Example ------- .. code-block:: php getTca(); $tca['tt_content']['columns']['header']['config']['max'] = 100; $event->setTca($tca); } } Impact ====== The new PSR-14 event can be used to dynamically generate TCA and add it as additional base TCA. This is especially useful for "TCA generator" extensions, which add TCA based on another resource, while still enabling users to override TCA via the known TCA overrides API. Note :php:`$GLOBALS['TCA']` is *not* set at this point. Event listeners can only work on the TCA coming from :php:`$event->getTca()` and must not access :php:`$GLOBALS['TCA']`. .. note:: Please note that TCA is always "runtime cached". This means that dynamic additions must never depend on runtime state, for example, the current PSR-7 request or similar, because such information might not even exist when the first call is done, for example, from CLI. .. index:: Backend, PHP-API, TCA, ext:core