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,37 @@
.. include:: /Includes.rst.txt
.. _deprecation-90522:
======================================================
Deprecation: #90522 - TSFE properties regarding images
======================================================
See :issue:`90522`
Description
===========
The image related properties :php:`$imagesOnPage` and :php:`$lastImageInfo` of
:php:`TypoScriptFrontendController` have been marked as deprecated.
Impact
======
Calling these properties will trigger a PHP :php:`E_USER_DEPRECATED` error.
Affected Installations
======================
All installations using these properties are affected.
Migration
=========
For :php:`$imagesOnPage` the AssetCollector may be used instead:
.. code-block:: php
$assetCollector = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(TYPO3\CMS\Core\Page\AssetCollector::class);
$imagesOnPage = $assetCollector->getMedia();
.. index:: Frontend, PHP-API, NotScanned, ext:core