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,45 @@
.. include:: /Includes.rst.txt
.. _breaking-72431:
=============================================================================
Breaking: #72431 - Remove deprecated code from lowlevel and utility functions
=============================================================================
See :issue:`72431`
Description
===========
The following deprecated methods have been removed:
* `ConfigurationView->printContent()`
* `DatabaseIntegrityView->printContent()`
* `StringUtility::isLastPartOfString()`
* `Bootstrap->executeExtTablesAdditionalFile()`
* `DatabaseTreeDataProvider->emitDeprecatedPostProcessTreeDataSignal()`
Impact
======
Using the methods above directly in any third party extension will result in a fatal error.
Affected Installations
======================
Instances which use calls to the methods above.
Instances which use TYPO3_extTableDef_script for TCA overrides.
Instances which use the signal `TYPO3\\CMS\\Core\\Tree\\TableConfiguration\\TableConfiguration\\DatabaseTreeDataProvider`
Migration
=========
* `StringUtility::isLastPartOfString()` use endsWith() instead
* `Bootstrap->executeExtTablesAdditionalFile()` (TYPO3_extTableDef_script) Move your TCA overrides to Configuration/TCA/Overrides of your project specific extension, or slot the signal "tcaIsBeingBuilt" for further processing.
* `DatabaseTreeDataProvider->emitDeprecatedPostProcessTreeDataSignal()` Update the signal name to TYPO3\\CMS\\Core\\Tree\\TableConfiguration\\DatabaseTreeDataProvider.
.. index:: PHP-API, TCA