This project is no longer maintained and no further public releases are planned.

No further support will be given.

Feel free to fork the git repository.

Generators

Generators are used to save the submitted form data to files. These files can be attached to an email or downloaded on the page shown by Finisher_SubmittedOK.

Version added

1.0.0

Example code

finishers.3.class = Tx_Formhandler_Finisher_SubmittedOK
finishers.3.config {
  returns = 1
  actions {
    pdf {
      class = Generator_WebkitPdf
      config {
        pid = 23
      }	
    }
    csv {
      class = Generator_Csv		
    }
  }
}

Generator_Print

Shows the SubmittedOK template again, but with page type 98. You can use this to show a print version of this view.

Generator_WebkitPdf

Generates PDF files using the extension webkitpdf.The configuration only needs the ID of the page where a webkitpdf plugin record was inserted. The only configuration option for Generator_WebkitPdf is...

Generator_PdfGenerator

Generates PDF view using the extension pdf_generator2.The configuration only requires the page type for PDF generation. You cannot generate email attachments using this component. Generator_PdfGenerat...

Generator_TcPdf

Generates PDF files using TCPDF. The subpart ###TEMPLATE_PDF### is required by this component! In this subpart you can adjust the PDF ouput using HTML.

Generator_Csv

Generates a CSV file containing the submitted form values.