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 = Finisher\SubmittedOK
finishers.3.config {
  returns = 1
  actions {
    pdf {
      class = Generator\WebkitPdf
      config {
        pid = 23
      }	
    }
    csv {
      class = Generator\Csv		
    }
  }
}

Generator\PrintVersion

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.