TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,42 @@
.. include:: /Includes.rst.txt
.. _deprecation-95065:
============================================================
Deprecation: #95065 - Hook extTablesInclusion-PostProcessing
============================================================
See :issue:`95065`
Description
===========
The TYPO3 hook :php:`$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['GLOBAL']['extTablesInclusion-PostProcessing']`
which is executed after :file:`ext_tables.php` files are included has been marked
as deprecated.
The accompanied PHP interface for such hooks
:php:`TYPO3\CMS\Core\Database\TableConfigurationPostProcessingHookInterface` is
marked as deprecated as well.
Impact
======
If a hook is registered in a TYPO3 installation, a PHP :php:`E_USER_DEPRECATED` error is triggered.
Affected Installations
======================
TYPO3 installations with custom extensions using this hook.
Migration
=========
Migrate to PSR-14 events, mainly the newly introduced :php:`\TYPO3\CMS\Core\Core\Event\BootCompletedEvent` and
the existing :php:`\TYPO3\CMS\Core\Configuration\Event\AfterTcaCompilationEvent`
depending on the use-case.
.. index:: PHP-API, FullyScanned, ext:core