Actions
Bug #97977
closedNew EXT:form request handling hides current ContentObjectRenderer
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Form Framework
Target version:
-
Start date:
2021-04-12
Due date:
2021-04-12
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.1
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
#93887 and #92406 introduced a new request handling for EXT:form forms. However, the new implementation hides the current ContentObjectRenderer
instance since it always creates a new instance:
This no longer allows form finishers to retrieve the current content object data. For example, the current content object element ID is stored in EXT:form_consent when a new consent is created, see https://github.com/eliashaeussler/typo3-form-consent/blob/0.6.0/Classes/Domain/Factory/ConsentFactory.php#L121-L130.
Re-using the current ContentObjectRenderer
via the ConfigurationManager
solves the problem.
Actions