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-78477:
=====================================================================================
Breaking: #78477 - FlashMessagesViewHelper no longer inherits from TagBasedViewHelper
=====================================================================================
See :issue:`78477`
Description
===========
The :php:`FlashMessagesViewHelper` has been refactored and no longer inherits from the :php:`TagBasedViewHelper`.
Impact
======
The :php:`FlashMessagesViewHelper` outputs default context specific markup. Adding own classes or tag attributes is no longer possible.
Affected Installations
======================
All installations using the :php:`FlashMessagesViewHelper` with tag specific attributes.
Migration
=========
Remove the tag specific attributes and style the default output. If you need custom output use the possibility to render FlashMessages yourself, for example:
.. code-block:: html
<f:flashMessages as="flashMessages">
<dl class="messages">
<f:for each="{flashMessages}" as="flashMessage">
<dt>CODE!! {flashMessage.code}</dt>
<dd>MESSAGE:: {flashMessage.message}</dd>
</f:for>
</dl>
</f:flashMessages>
.. index:: Backend, Fluid, Frontend