xima / xima-typo3-formcycle
TYPO3 extension to include your formcycle forms
Installs: 1 459
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 11
Forks: 3
Open Issues: 19
Type:typo3-cms-extension
Requires
- php: ^8.1
- ext-fileinfo: *
- typo3/cms-core: ^11.0 || ^12.0
Requires (Dev)
- bk2k/bootstrap-package: ^14.0
- codeception/module-asserts: ^3.0
- codeception/module-cli: ^2.0
- codeception/module-db: ^3.1
- codeception/module-phpbrowser: ^3.0
- codeception/module-webdriver: ^4.0
- eliashaeussler/typo3-codeception-helper: dev-main
- friendsofphp/php-cs-fixer: ^3.34.1
- helhum/typo3-console: ^7.1 || ^8.1
- helmich/typo3-typoscript-lint: ^3.2.1
- saschaegerer/phpstan-typo3: ^1.1.2
- ssch/typo3-rector: ^2.0
- symfony/translation: ^6.3 || ^7.0
- typo3/cms-base-distribution: *
- typo3/cms-lowlevel: *
- typo3/testing-framework: ^7.0 || ^8.0
- dev-master
- v13.x-dev
- v11.x-dev
- 9.1.3
- 9.1.2
- 9.1.1
- 9.1.0
- 9.0.3
- 9.0.2
- 9.0.1
- 9.0.0
- v8.0.1
- v8.0.0
- v7.2.2
- v7.2.1
- v7.2.0
- v7.1.3
- v7.1.2
- v7.1.1
- v7.1.0
- v7.0.1
- v7.0.0
- v6.0.0
- v5.0.1
- v5.0.0
- dev-renovate/codecov-codecov-action-5.x
- dev-renovate/typo3-testing-framework-9.x
- dev-renovate/bk2k-bootstrap-package-15.x
- dev-renovate/codecov-codecov-action-4.x
- dev-renovate/major-typo3
- dev-fix-icon
- dev-docs-badges
- dev-fix-ext-conf
- dev-test-workflow
- dev-no-cache
- dev-language-url
- dev-jquery-ui-css
- dev-csp-font-src
- dev-renovate-config
- dev-ter-release
This package is auto-updated.
Last update: 2024-11-14 23:18:40 UTC
README
TYPO3 extension xm_formcycle
A TYPO3 extension that connects to formcycle. Select your created forms and embed them into your TYPO3 site.
Requirements
- formcycle version 8 + installed plugin
Formularliste
- PHP 8.1+
Installation
Composer
composer require xima/xima-typo3-formcycle
TER
Download the zip file from TYPO3 extension repository (TER).
Configuration
After installation, enter your login data via extension configuration and include the TypoScript template for the frontend rendering.
1. Extension configuration
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', ], ]
2. TypoScript include
Include the static TypoScript template "formcycle" or directly import it in your sitepackage:
@import 'EXT:xm_formcycle/Configuration/TypoScript/setup.typoscript'
Developer
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.
License
This project is licensed under GNU General Public License 2.0 (or later).