diff --git a/typo3/sysext/form/Classes/Hooks/FormPagePreviewRenderer.php b/typo3/sysext/form/Classes/Hooks/FormPagePreviewRenderer.php new file mode 100644 index 0000000000000000000000000000000000000000..9aed0b4ff02385c77d8a794ae12e65404a51025a --- /dev/null +++ b/typo3/sysext/form/Classes/Hooks/FormPagePreviewRenderer.php @@ -0,0 +1,86 @@ +<?php +declare(strict_types=1); +namespace TYPO3\CMS\Form\Hooks; + +/* + * This file is part of the TYPO3 CMS project. + * + * It is free software; you can redistribute it and/or modify it under + * the terms of the GNU General Public License, either version 2 + * of the License, or any later version. + * + * For the full copyright and license information, please read the + * LICENSE.txt file that was distributed with this source code. + * + * The TYPO3 project - inspiring people to share! + */ + +use TYPO3\CMS\Core\Utility\GeneralUtility; +use TYPO3\CMS\Extbase\Object\ObjectManager; +use TYPO3\CMS\Extbase\Service\FlexFormService; +use TYPO3\CMS\Form\Mvc\Persistence\FormPersistenceManagerInterface; +use TYPO3\CMS\Lang\LanguageService; + +/** + * Contains a preview rendering for the page module of CType="form_formframework" + */ +class FormPagePreviewRenderer implements \TYPO3\CMS\Backend\View\PageLayoutViewDrawItemHookInterface +{ + /** + * Preprocesses the preview rendering of the content element "form_formframework". + * + * @param \TYPO3\CMS\Backend\View\PageLayoutView $parentObject Calling parent object + * @param bool $drawItem Whether to draw the item using the default functionalities + * @param string $headerContent Header content + * @param string $itemContent Item content + * @param array $row Record row of tt_content + * @return void + */ + public function preProcess( + \TYPO3\CMS\Backend\View\PageLayoutView &$parentObject, + &$drawItem, + &$headerContent, + &$itemContent, + array &$row + ) { + if ($row['CType'] === 'form_formframework') { + $contentType = $parentObject->CType_labels[$row['CType']]; + $itemContent .= $parentObject->linkEditContent('<strong>' . htmlspecialchars($contentType) . '</strong>', $row) . '<br />'; + + $flexFormData = GeneralUtility::makeInstance(FlexFormService::class) + ->convertFlexFormContentToArray($row['pi_flexform']); + + if (!empty($flexFormData['settings']['persistenceIdentifier'])) { + $persistenceIdentifier = $flexFormData['settings']['persistenceIdentifier']; + if (empty($persistenceIdentifier)) { + $formLabel = $this->getLanguageService()->sL( + 'LLL:EXT:form/Resources/Private/Language/Database.xlf:tt_content.preview.noPersistenceIdentifier' + ); + } else { + $formPersistenceManager = GeneralUtility::makeInstance(ObjectManager::class)->get(FormPersistenceManagerInterface::class); + $formDefinition = $formPersistenceManager->load($persistenceIdentifier); + $formLabel = $formDefinition['label']; + } + } else { + $formLabel = $this->getLanguageService()->sL( + 'LLL:EXT:form/Resources/Private/Language/Database.xlf:tt_content.preview.noPersistenceIdentifier' + ); + } + + $itemContent .= $parentObject->linkEditContent( + $parentObject->renderText($formLabel), + $row + ) . '<br />'; + + $drawItem = false; + } + } + + /** + * @return LanguageService + */ + protected function getLanguageService(): LanguageService + { + return $GLOBALS['LANG']; + } +} diff --git a/typo3/sysext/form/Resources/Private/Language/Database.xlf b/typo3/sysext/form/Resources/Private/Language/Database.xlf index 2ed86681470865850e89810dd5cce4ad83110539..36364dd35d885cad20db793df906f450bd15d004 100644 --- a/typo3/sysext/form/Resources/Private/Language/Database.xlf +++ b/typo3/sysext/form/Resources/Private/Language/Database.xlf @@ -20,6 +20,10 @@ <source>Override finisher settings</source> </trans-unit> + <trans-unit id="tt_content.preview.noPersistenceIdentifier" xml:space="preserve"> + <source>No form selected.</source> + </trans-unit> + <trans-unit id="tt_content.finishersDefinition.EmailToSender.label" xml:space="preserve"> <source>Email to sender</source> </trans-unit> diff --git a/typo3/sysext/form/ext_localconf.php b/typo3/sysext/form/ext_localconf.php index a5ea5e710d704a0bef4ab1f9b37cee4c8c940e23..f008f51d186fd3bc1eb05024dd1612f327c26e02 100644 --- a/typo3/sysext/form/ext_localconf.php +++ b/typo3/sysext/form/ext_localconf.php @@ -30,6 +30,10 @@ call_user_func(function () { $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['GLOBAL']['softRefParser']['formPersistenceIdentifier'] = \TYPO3\CMS\Form\Hooks\SoftReferenceParserHook::class; + // Register for hook to show preview of tt_content element of CType="form_formframework" in page module + $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['cms/layout/class.tx_cms_layout.php']['tt_content_drawItem']['form_formframework'] = + \TYPO3\CMS\Form\Hooks\FormPagePreviewRenderer::class; + // Add a bunch of icons to icon registry $iconIdentifiers = [ 'advanced-password',