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,72 @@
.. include:: /Includes.rst.txt
.. _deprecation-79858:
=========================================================
Deprecation: #79858 - TSFE-related properties and methods
=========================================================
See :issue:`79858`
Description
===========
The following properties within TypoScriptFrontendController have been marked as deprecated:
* :php:`$compensateFieldWidth`
* :php:`$excludeCHashVars`
* :php:`$scriptParseTime`
The following methods have been marked as deprecated:
* :php:`TypoScriptFrontendController->generatePage_whichScript()` (used via :typoscript:`config.pageGenScript`)
* :php:`TypoScriptFrontendController->encryptEmail()`
* :php:`TypoScriptFrontendController->encryptCharcode()`
* :php:`PageGenerator::pagegenInit()`
The following TypoScript properties have been marked as deprecated:
* :typoscript:`config.pageGenScript`
* :typoscript:`config.compensateFieldWidth`
Impact
======
Calling any of the PHP methods will trigger a deprecation log entry.
All properties and options are still callable with the according output, however there are
alternatives to achieve the same.
Affected Installations
======================
Any TYPO3 installation working with custom extensions that use any of these functionalities, methods or properties.
Migration
=========
All of the functionality is obsolete or outdated and should be handled differently from now on:
1. The :typoscript:`compensateFieldWidth` option was used for forms built with TYPO3 4.x (before TYPO3 4.6),
instead, any other form framework should be used for forms and for field width calculations, where
styling of form fields are also handled via CSS.
2. An alternative :typoscript:`config.pageGenScript` can be used and set via hooks in PHP classes nowadays and
executed, instead of configuring this functionality on a high-end TypoScript level to execute include
spaghetti PHP code within a file.
3. :php:`PageGenerator::pagegenInit()` is solely working on public properties of the TSFE PHP class, which
belongs to the TSFE object itself (thus, the logic is copied to :php:`$TSFE->preparePageContentGeneration()`)
4. Calculating the debug parse time for the web page is not part of the controller logic but more
certainly belongs to the request handling itself, where it is handled in a cleaner way for PHP,
waiting for further refactorings in TYPO3 v9.
5. The methods :php:`TypoScriptFrontendController->encryptEmail()` and :php:`encryptCharcode()` have been moved
to ContentObjectRenderer.
.. index:: Frontend, TypoScript, PHP-API