This project is no longer maintained and no further public releases are planned.

No further support will be given.

Feel free to fork the git repository.

Finisher\StoreGP

This Finisher stores the GET/POST values in the Formhandler session for further use in other plugins to not lose changes in GET/POST values made by other Finishers (e.g. insert_id from Finisher_DB).

The values are stored in the TYPO3 session and can be accessed later on using TypoScript or PHP.

Version added

1.0.0

TypoScript path

plugin.Tx_Formhandler.settings.finishers.x copy to clipboard

Example code

email = TEXT
email.data = TSFE:fe_user|sesData|finisher-storegp|email

$sesData = $GLOBALS['TSFE']->fe_user->getKey('ses', 'finisher-storegp');
$email = $sesData['email'];

Properties

.sessionKey

Before version 1.5 Finisher\StoreGP stored the form data in the user session without using a special key. The form data was therefore difficult to access later on because it was mixed with other settings in session. This setting allows you to specify a custom key to use. You can clear the session values later using PreProcessor\ClearSession.

Data type

String | cObj

Default value

finisher-storegp

Version added

1.5.0