Project

General

Profile

Actions

Bug #95540

closed

tx_form ConfirmationFinisher does not execute the methods injectConfigurationManager and injectContentObjectRenderer

Added by Urs Maag over 2 years ago. Updated over 1 year ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Form Framework
Target version:
Start date:
2021-10-08
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
11
PHP Version:
7.4
Tags:
tx_form ConfirmationFinisher
Complexity:
easy
Is Regression:
Sprint Focus:

Description

Using the ConfirmationFinisher in tx_form for displaying content elements as confirmation page, it doesn't work because the inject methods are not called and therefore the typoscript definitions are not loaded.

Class: form/Classes/Domain/Finishers/ConfirmationFinisher.php

Workaround
Add following code to the method "executeInternal()" before the other code:

    protected function executeInternal()
    {    
    $this->contentObjectRenderer = GeneralUtility::makeInstance('TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer');
    $this->configurationManager = GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\\Configuration\\ConfigurationManager');
    $this->typoScriptSetup = $this->configurationManager->getConfiguration(\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_FULL_TYPOSCRIPT);
    ...
    }


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #95853: DI in form finishers is not workingClosed2021-11-02

Actions
Actions

Also available in: Atom PDF