43 lines
1.1 KiB
ReStructuredText
43 lines
1.1 KiB
ReStructuredText
.. 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
|