diff --git a/typo3/sysext/form/Documentation/Configuration/Postprocessors/Index.rst b/typo3/sysext/form/Documentation/Configuration/Postprocessors/Index.rst index 767e8f217fe6a32bd3d8fdbffb2e0be5a986ef73..0e3f94715a72bb46905742488348a7904604f74a 100644 --- a/typo3/sysext/form/Documentation/Configuration/Postprocessors/Index.rst +++ b/typo3/sysext/form/Documentation/Configuration/Postprocessors/Index.rst @@ -25,6 +25,14 @@ Currently there are two postProcessors: Mail/Index.rst Redirect/Index.rst +The processing will be done in the order of the postProcessors. + +Custom postProcessors +===================== + +It is also possible to configure a custom class as a postProcessor. Just use the class name as the postProcessor name. +The postProcessor class should implement `TYPO3\CMS\Form\PostProcess\PostProcessorInterface` + **Example:** .. code-block:: typoscript @@ -40,7 +48,7 @@ Currently there are two postProcessors: 2 { destination = 5 } - } - -The processing will be done in order of the postProcessors. - + 3 = Vendor\ExtensionName\Folder\ClassName + 3 { + } + } \ No newline at end of file