techniconcept / formfinisher-jsonstore
Neos.Form finisher to store form data in database
Installs: 27
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:neos-package
Suggests
- neos/form-fusionrenderer: Flow Form Framework preset for Fusion based Form rendering
This package is not auto-updated.
Last update: 2025-04-02 18:20:30 UTC
README
Let you add a form finisher to store the form data as JSON in the database.
Dependencies
This packages depends on
- ttree/jsonstore to store data into DB
- neos/form-builder for the form ;-)
How to use?
composer require techniconcept/formfinisher-jsonstore
- Add the finisher to your form
NodeTypes based form
Add the "JsonStore Finisher" and fill the label and type to retrieve your form.
Fusion based form (with neos/form-fusionrenderer)
Add the following Fusion code:
prototype(TC.FormExample:Content.MyForm) < prototype(Neos.Form.Builder:Form) {
# ...
finishers {
jsonStoreFinisher = TC.FormFinisher.JsonStore:Finisher.Definition {
options {
storeLabel = 'JsonStore label'
storeType = 'ch.techniconcept.form-finisher.jsonstore'
}
}
}
# ...
}
Acknowledgments
Development sponsored by techniConcept.
We try our best to craft this package with a lots of love, we are open to sponsoring, support request, ... just contact us.
License
The MIT License (MIT). Please see LICENSE for more information.