Download the PHP package progicharles/doc-template without Composer
On this page you can find all versions of the php package progicharles/doc-template. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download progicharles/doc-template
More information about progicharles/doc-template
Files in progicharles/doc-template
Package doc-template
Short Description Convert docx and xlsx files templates into PDF.
License MIT
Informations about the package doc-template
Document Designer is a Laravel package allowing to generate documents from a template and filling it with some user data. The current version of PHPWord supports Microsoft Office Open XML (OOXML or OpenXML)
Document Designer is based on PHPWord. LibreOffce need to be installed on the server for PDF export.
Features
- Template processing from .docx files
- Template processing from .xslx files
- Export in .docx, .xlsx & .pdf fomat
- Text variable replacement
- Table row repetition
- Recursive blocks repetition
Installation
Package
LibreOffice
You can refer to the oficial documentation from LibreOffice for the installation on your server OS.
Getting Started
You just need to specify a template file, a out file name and the dataset to be used to parse and populate the template:
The $data
should be an associative array containing all the variables and the corresponding data to be replaced.
Depending the extension (.docx or .pdf) given in the $outFile
, the export format will be DOCX or PDF.
Variables
And in the template document, you need to declare the variables with the syntax : ${variableName}
Tables
Table keys in the associative array needs a t:
prefix.
In the template document, you need to declare the variables with the syntax : ${variableName}
The first row of the all template document containing a variable with the the same name as the table key will be repeated and the content of the other variables will be replaced.
Images
Image keys in the associative array needs a i:
prefix.
And in the template document, you need to declare the variables with the syntax : ${imgVariable:[width]:[height]:[ratio]}
Blocks
Block keys in the associative array needs a b:
prefix and with capital letters.
In the template document, you need to declare the blocks start and end with flags :
${BLOCK_NAME}
Block content...
${/BLOCK_NAME}
The blocks behave recursively, witch means they can contain variables, tables and others block.
If a block contain a variable with a name in conflict with another variable in a parent block, the deeper block variables will be replaced in priority.
Exemple:
Php
Template.docx
This is a simple test template content with two variables ${var1} and ${var2}
With an image:
${img1:300:200}
With a table:
Table variable 1 | Table variable 2 |
---|---|
${tVar1} | ${tVar2} |
And a block:
${BLOCK}
This is a block content with two variables ${var1} and ${var2}
${/BLOCK}
All versions of doc-template with dependencies
laravel/framework Version >=5.6
phpoffice/phpword Version ^0.16.0
phpoffice/phpspreadsheet Version ^1.9