Skip to content
Snippets Groups Projects
Commit 13414805 authored by Björn Jacob's avatar Björn Jacob Committed by Christian Kuhn
Browse files

[DOCS] Document final "nature" of Redirect finisher

This patch adds a note about the final "nature" of the
Redirect finisher.

Resolves: #91381
Releases: master, 10.4
Change-Id: I63eab923ab7d63a977cee955bf51a6aac5363f19
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70474


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 59b62429
Branches
Tags
No related merge requests found
......@@ -10,6 +10,14 @@ The form framework ships a bunch of finishers, which will be briefly
described here. For more details, please head to the API reference and check
out the section regarding :ref:`Finisher Options<apireference-finisheroptions>`.
.. note::
Finishers are executed in the order defined in your form definition. This is
especially important when you are using the ``Redirect finisher``. Make sure
this finisher is the very last one to be executed. The ``Redirect finisher``
stops the execution of all subsequent finishers in order to perform the redirect.
I.e. finishers defined after the ``Redirect finisher`` will not be executed in
any case.
.. _concepts-finishers-closurefinisher:
......@@ -73,8 +81,9 @@ Additional link parameters can be added to the URL.
.. note::
This finisher stops the execution of all subsequent finishers in order to perform a redirect.
Therefore, this finisher should always be the last finisher to be executed.
This finisher stops the execution of all subsequent finishers in order to perform
the redirect. Therefore, this finisher should always be the last finisher to be
executed.
.. _concepts-finishers-savetodatabasefinisher:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment