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,41 @@
.. include:: /Includes.rst.txt
.. _breaking-67646:
============================================================
Breaking: #67646 - PHP library inclusion in frontend removed
============================================================
See :issue:`67646`
Description
===========
The PHP library inclusion into the TYPO3 Frontend has been removed without substitution.
Previously it was used to include plain PHP scripts during the Frontend request.
The method `PageGenerator::getIncFiles()` has been removed.
Impact
======
The TypoScript options `config.includeLibrary` and `config.includeLibs` have no effect anymore.
Any calls to `PageGenerator::getIncFiles()` will result in a fatal error.
Affected Installations
======================
Any installation using the TypoScript options named above.
Any third party code using the method named above.
Migration
=========
Use hooks during the Frontend set up to execute custom PHP code.
.. index:: PHP-API, Frontend, TypoScript