frappant/frp-form-answers

Adds the possibility, as a finisher, to save and export the form entries from customers.

Maintainers

Package info

github.com/frappant/frp_form_answers

Homepage

Type:typo3-cms-extension

pkg:composer/frappant/frp-form-answers

Transparency log

Statistics

Installs: 122 334

Dependents: 0

Suggesters: 0

Stars: 5

Open Issues: 1


README

https://travis-ci.org/frappant/frp_form_answers.svg?branch=master

Documentation

Save submitted forms answers from the core extension forms made simple.

Saves submitted form answers in the database on the same pid where the form is inserted. Gives possibility to export the data as xsl, xml or csv.

How it works

This extension adds a new finisher to the Module "Forms". By adding this finisher the extension saves all submitted forms into the pid where the form is displayed. A new module is added where all the submitts from a given pid are displayed - if there are subpages with saved forms, the pages are displayed.

There is a fast export on top of the list view where you can select either all or all new forms (not exported yet). An configurable export can be reached by changing the view to "Export".

Screenshots

New finisher in module form. List subpages with form answers in module Form Answers. List form answers of given pid in module Form Answers Form for custom export in module  Form Answers

Installation

Through TER or with composer (typo3-ter/frp-form-answers).

Integration

Simply install the extension and add the finisher to a form.

  • No TypoScript setup to include.

Signals

There is a signal included in the finisher, after filling up the values in an array. It gives you the array so you can modify or add several fields, like IP address, Client information, time stamps or other information.

The fields are inserted by the identifier each field has from the form extension. The data structure looks like this:

array[

'value' => $value, 'conf' => array[

'label' => $label, 'inputType' => $inputType

]

]

$value The value of the field. Values with several options are comma-separatet

$label Label of the field - will be used in detail view in the backend

$inputType Inputtype of the field, as configured in Module Forms. EXT:forms includes some hidden/bnous fields like fieldsets and a honeypot, we need the inputType to separate them in export.

Contributing

Bug reports

Bug reports are welcome through GitHub.

Please submit with your issue the debug log.

Pull request

Pull request are welcome through GitHub.

Development happens on master, which carries the TYPO3 v14 line. The older lines live on release/6.x (TYPO3 v13) and release/5.x (TYPO3 v12) and take security fixes only.

Changelog

7.1.1:Works with large data sets, exports honour charset and file name, backend uses the current TYPO3 styling, hardened the form filter in the entry table, stores every submitted value including uploads and dotted identifiers, entries can be deleted and removed from the module
7.0.1:Fixed the coding guidelines check and added PHP 8.4 to the test matrix
7.0.0:Compatibility to TYPO3 v14, TYPO3 v13 support dropped
6.1.1:Security update, remove old packages and update phpspreadsheet to 5.2
6.1.0:added options to append file path to exported data.
6.0.0:Compatibility to TYPO3 v13

... :5.0.4: Security update, remove old packages and update phpspreadsheet to 5.2 :5.0.0: Compatibility to TYPO3 v12 ... :1.2.0: Several Bugfixes, Mail notification as cronjob :1.1.0: Several Bugfixes, better overview of subpages with formAnswers, labels translated. Added possibility to add a separate uid-list for each form (submit_uid) -> option set in extension settings. :1.0.0: First release