Documentation

https://phpoffice.github.io/PHPWord/usage/template.html https://github.com/hscstudio/syawwal/tree/master/vendor/phpoffice/phpword/samples/resources

Template.docx

Lire un document word avec TemplateProcessor

use PhpOffice\\PhpWord\\Element\\Table;
use PhpOffice\\PhpWord\\Element\\Text;
use PhpOffice\\PhpWord\\Element\\TextRun;
use PhpOffice\\PhpWord\\Settings;
use PhpOffice\\PhpWord\\SimpleType\\TblWidth;
use PhpOffice\\PhpWord\\TemplateProcessor;

$templateProcessor = new TemplateProcessor($template_file_fullpath);

Remplacer une valeur

$templateProcessor->setValue('header.notre_ref', $data['header']['notre_ref'].'-'.sprintf('%02d', $data['header']['revision']));

Ajouter un texte

$title = new TextRun();
$title->addText($this->escape('Référence 243511A'), ['name' => 'Arial', 'size' => 9, 'bold' => true, 'italic' => false, 'color' => 'black']);
$title->addText($this->escape('Suite du texte') . '<w:br/><w:br/>', ['name' => 'Arial', 'size' => 9, 'bold' => false, 'italic' => false, 'color' => 'black']);
$templateProcessor->setComplexBlock('texte', $title);

Ajouter un tableau

$font_size = 8;
$col1width = 2500;
$col2width = 2500;
$col3width = 2500;
$col4width = 2500;
$bgcolor = 'FFC001';

$param_table = [
    'width' => 100,
    'unit' => TblWidth::PERCENT,
    'borderSize' => 1,
    'borderColor' => '000000',
    'cellMargin' => 0,
    // 'cellSpacing' => 0,
];

$param_cell_noborder = [
    'valign' => \\PhpOffice\\PhpWord\\SimpleType\\VerticalJc::CENTER,
    'borderBottomSize' => 0,
    'borderBottomColor' => 'FFFFFF',
    'borderLeftSize' => 0,
    'borderLeftColor' => 'FFFFFF',
    'borderRightSize' => 0,
    'borderRightColor' => 'FFFFFF',
];

$param_cell_jaune = [
    'valign' => \\PhpOffice\\PhpWord\\SimpleType\\VerticalJc::CENTER,
    'bgColor' => METISAFRICA_JAUNE,
];

$param_cell_text_left = [
    // 'spaceBefore' => \\PhpOffice\\PhpWord\\Shared\\Converter::inchToTwip(0.05),
    'space' => ['before' => 100, 'after' => 100],
    'indentation' => ['left' => 100, 'right' => 100],
    'align' => 'left',
];

$param_cell_text_center = [
    'space' => ['before' => 100, 'after' => 100],
    'indentation' => ['left' => 100, 'right' => 100],
    'align' => 'center',
];

$param_cell_text_right = [
    'space' => ['before' => 100, 'after' => 100],
    'indentation' => ['left' => 100, 'right' => 100],
    'align' => 'right',
];

$table = new Table($param_table);

$table->addRow();
$table->addCell($col1width, $param_cell_jaune)->addText('COL1', ['name' => 'Arial', 'size' => $font_size, 'bold' => true], $param_cell_text_center);
$table->addCell($col2width, $param_cell_jaune)->addText('COL2', ['name' => 'Arial', 'size' => $font_size, 'bold' => true], $param_cell_text_center);
$table->addCell($col3width, $param_cell_jaune)->addText('COL3', ['name' => 'Arial', 'size' => $font_size, 'bold' => true], $param_cell_text_center);
$table->addCell($col4width, $param_cell_jaune)->addText('TOTAL HT €', ['name' => 'Arial', 'size' => $font_size, 'bold' => true], $param_cell_text_center);

$templateProcessor->setComplexBlock('{table}', $table);

Ajouter un tableau simple

$table = new Table(array('borderSize' => 12, 'borderColor' => 'green', 'width' => 6000, 'unit' => TblWidth::TWIP));
$table->addRow();
$table->addCell(150)->addText('Cell A1');
$table->addCell(150)->addText('Cell A2');
$table->addCell(150)->addText('Cell A3');
$table->addRow();
$table->addCell(150)->addText('Cell B1');
$table->addCell(150)->addText('Cell B2');
$table->addCell(150)->addText('Cell B3');
$templateProcessor->setComplexBlock('table', $table);

Ajouter une image

// --- Get image size from the picture
$size = getimagesize($article['a_picture']);
$width = $size[0];
$height = $size[1];

$word_width = 160;
$word_height = intval(($word_width * $height) / $width);

$templateProcessor->setImageValue(
	'picture', 
	[
		'path' => $article['a_picture'], 
		'ratio' => true, 
		'width' => $word_width, 
		'height' => $word_height, 
		'positioning' => 'absolute', 
		'align' => 'right', 
		'wrappingStyle' => 'infront'
	]);

Cloner un bloc

$templateProcessor->cloneBlock('block_article', count($replacements), true, true, $replacements);
$templateProcessor->setValue('a_picture#1', '');

Autre exemple :

${bloc}
Customer: ${customer_name}
Address: ${customer_address}
...
${/bloc}

$replacements = array(
    array('customer_name' => 'Batman', 'customer_address' => 'Gotham City'),
    array('customer_name' => 'Superman', 'customer_address' => 'Metropolis'),
);
$templateProcessor->cloneBlock('block_name', 2, true, false, $replacements);

Sauvegarder et télécharger automatiquement

$templateProcessor->saveAs("Template_generated.docx");

$response = new BinaryFileResponse("Template_generated.docx");
$response->headers->addCacheControlDirective('no-cache', true);
$response->headers->addCacheControlDirective('max-age', 0);
$response->headers->addCacheControlDirective('must-revalidate', true);
$response->headers->addCacheControlDirective('no-store', true);
$response->setContentDisposition(
    ResponseHeaderBag::DISPOSITION_ATTACHMENT,
    basename("Template_generated.docx"),
);
return $response;
exit;

Exemple de code source

/**
 * @Route("/word", name="word")
 */
public function word(RequestStack $requestStack, Request $request, UrlGeneratorInterface $urlgenerator)
{

    // --- Injecter le doc word dans la fiche $rsid jmj_entretien
    $template_file_fullpath = '/usr/local/nchp/ezged/www3.src/sf/app/public/Template.docx';
    $file_generated = '/usr/local/nchp/ezged/www3.src/sf/app/public/Template_generated.docx';
    
    $templateProcessor = new TemplateProcessor($template_file_fullpath);

    $templateProcessor->setValue("titre", "Titre du document");
    $templateProcessor->setCheckbox('checkbox', true);

    $replacements = array(
        array('customer_name' => 'Batman', 'customer_address' => 'Gotham City'),
        array('customer_name' => 'Superman', 'customer_address' => 'Metropolis'),
    );
    $templateProcessor->cloneBlock('bloc', 2, true, false, $replacements);

    // Clone users
    $replacements = array(
        array('userName' => 'Batman', 'userFirstName' => 'Gotham City'),
        array('userName' => 'Superman', 'userFirstName' => 'Metropolis'),
    );
    $templateProcessor->cloneRow('userId', 3);
    $templateProcessor->setValue("userName#1", "BRACONNIER");
    $templateProcessor->setValue("userName#2", "BRACONNIER");
    $templateProcessor->setValue("userName#3", "BRACONNIER");
    $templateProcessor->setValue("userFirstName#1", "Jérôme");

    $table = new Table(array('borderSize' => 12, 'borderColor' => 'green', 'width' => 6000, 'unit' => TblWidth::TWIP));
    $table->addRow();
    $table->addCell(150)->addText('Cell A1');
    $table->addCell(150)->addText('Cell A2');
    $table->addCell(150)->addText('Cell A3');
    $table->addRow();
    $table->addCell(150)->addText('Cell B1');
    $table->addCell(150)->addText('Cell B2');
    $table->addCell(150)->addText('Cell B3');
    $templateProcessor->setComplexBlock('table', $table);

    $templateProcessor->saveAs($file_generated);

    $response = new BinaryFileResponse($file_generated);
    $response->headers->addCacheControlDirective('no-cache', true);
    $response->headers->addCacheControlDirective('max-age', 0);
    $response->headers->addCacheControlDirective('must-revalidate', true);
    $response->headers->addCacheControlDirective('no-store', true);
    $response->setContentDisposition(
        ResponseHeaderBag::DISPOSITION_ATTACHMENT,
        basename(str_replace('_copy.', '.', $file_generated)),
    );
    return $response;
    exit;
}