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,44 @@
.. include:: /Includes.rst.txt
.. _breaking-107568-1759325068:
==============================================
Breaking: #107568 - Removed "afterSubmit" hook
==============================================
See :issue:`107568`
Description
===========
The hook
:php:`$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/form']['afterSubmit']`
has been removed in favor of the PSR-14 event
:php:`\TYPO3\CMS\Form\Event\BeforeRenderableIsValidatedEvent`.
Impact
======
Hook implementations registered under :php:`afterSubmit` are no longer executed
in TYPO3 v14.0 and later.
Affected installations
======================
TYPO3 installations with custom extensions using this hook are affected.
The extension scanner reports any usage as a weak match.
Migration
=========
The hook was removed without a deprecation phase to allow extensions to work
with both TYPO3 v13 (using the hook) and TYPO3 v14+ (using the new event)
simultaneously.
Use the :ref:`PSR-14 event <feature-107568-1759326362>` instead to allow
greater influence over the form submission process. Since the event is
dispatched at a later point, it allows more extensive modifications than the
previous hook.
.. index:: Backend, ext:form, FullyScanned