Sample 33 FormField

04:46:47 Create new PhpWord object
04:46:47 Write to Word2007 format
04:46:47 Write to ODText format
04:46:47 Write to RTF format
04:46:47 Write to HTML format
04:46:47 Write to PDF format
04:46:47 Done writing file(s)
04:46:47 Peak memory usage: 6 MB

 

Results: docx odt rtf html pdf


<?php

include_once 'Sample_Header.php';

// New Word document
echo date('H:i:s'), ' Create new PhpWord object'EOL;
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$phpWord->getSettings()->getDocumentProtection()->setEditing('forms');

// New section
$section $phpWord->addSection();

$textrun $section->addTextRun();
$textrun->addText('Form fields can be added in a text run and can be in form of textinput ');
$textrun->addFormField('textinput')->setName('MyTextBox');
$textrun->addText(', checkbox ');
$textrun->addFormField('checkbox')->setDefault(true);
$textrun->addText(', or dropdown ');
$textrun->addFormField('dropdown')->setEntries(['Choice 1''Choice 2''Choice 3']);
$textrun->addText('. You have to set document protection to "forms" to enable dropdown.');

$section->addText('They can also be added as a stand alone paragraph.');
$section->addFormField('textinput')->setValue('Your name');

// Save file
echo write($phpWordbasename(__FILE__'.php'), $writers);
if (!
CLI) {
    include_once 
'Sample_Footer.php';
}