This project was made with ❤️ to Alê.
The main objective is to take the existing process of transforming form into PDF esier.
It is needed you to have composer to install the required mpdf package (a PHP Library to generate PDF files).
-
First of all, install mpdf package by running the command:
composer install
-
Once you had the package installed, you can open your server to see the index.html page and select your template requested;
-
Fill the form fields with your answers, then, click the submit button;
-
You will see the page of your final PDF with your template and respective answers rendered.
To create a new template, just create a folder with the name of your template on the folder templates
. Inside this folder, you must obtain the files index.json
(with your configurations), and content.html
(you can provide the header.html
and footer.html
files too).
Remember to insert the name of the template in the settings.json
in templates
array.
In your index.json
, should contain a json with this structure:
{
"title": "Example Title",
"description": "This is a description",
"form": []
}
You can add the output
attribute to specify the filename (you can user variables from the answors of your form by using double curly braces "{{variable}}") if you want to save it (if yes, it will be generated in output/template_name/filename.pdf
).
In your form
array, you put the fields of you form. Example:
{
"type": "field type",
"name": "Field name"
}
Possible field types are: text
, number
, radio
, checkbox
.
If the field type is radio
and checkbox
, you should provide the options
attribute, an array of strings.
If the field type is radio
, you can use the attribute "other": true
to allow the responder of the form select "other" option and insert a value.