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,36 @@
.. include:: /Includes.rst.txt
.. _deprecation-85408:
=======================================================
Deprecation: #85408 - TemplateService init() deprecated
=======================================================
See :issue:`85408`
Description
===========
Method :php:`TYPO3\CMS\Core\TypoScript\TemplateService->init()` has been marked as deprecated
and should not be used any longer.
Impact
======
Calling above method triggers a PHP :php:`E_USER_DEPRECATED` error.
Affected Installations
======================
Instances with extensions calling the above method. However, the extension scanner
is not configured to find this too generic method name.
Migration
=========
The business code of the method is done within :php:`__construct()`, an explicit call
to :php:`init()` is no longer needed and can be removed.
.. index:: PHP-API, NotScanned