Sample 33 FormField

03:20:05 Create new PhpWord object
03:20:05 Write to Word2007 format
03:20:05 Write to ODText format
03:20:05 Write to RTF format
03:20:05 Write to HTML format
03:20:05 Write to PDF format
03:20:05 Done writing file(s)
03:20:05 Peak memory usage: 4 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->getProtection()->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(array('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';
}