A TYPO3 extension that connects to formcycle. Select your created forms and embed them into your TYPO3 site.
- formcycle version 8 + installed plugin
Formularliste
- PHP 8.1+
composer require xima/xima-typo3-formcycle
Download the zip file from TYPO3 extension repository (TER).
After installation, enter your login data via extension configuration and include the TypoScript template for the frontend rendering.
Set your formcycle credentials in the extension configuration via TYPO3 backend or in your config/system/settings.php
:
'EXTENSIONS' => [
'xm_formcycle' => [
'formcycleUrl' => 'https://pro.formcloud.de/formcycle/',
'formcycleClientId' => '4231',
],
]
Include the static TypoScript template "formcycle" or directly import it in your sitepackage:
@import 'EXT:xm_formcycle/Configuration/TypoScript/setup.typoscript'
If you want to modify the fluid template, add template paths via TypoScript constants:
plugin.tx_xmformcycle {
view {
templateRootPath = EXT:your_ext/Resources/Private/Templates
partialRootPath = EXT:your_ext/Resources/Private/Partials
layoutRootPath = EXT:your_ext/Resources/Private/Layouts
}
}
Copy and modify the Formcycle.html
to the Templates directory.
This project is licensed under GNU General Public License 2.0 (or later).