Is there any PHP Word Document Library that can allow me to add comments automatically, Such as this sample below,
Wherein comments can be seen on the right side on the document,
I have tried PHPOffice but it doesn't seem to have any comment capabilities,
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$phpWord->setDefaultFontSize(10);
$phpWord->setDefaultFontName('Calibri');
$phpWord->setDefaultParagraphStyle(
array(
'spaceAfter' => \PhpOffice\PhpWord\Shared\Converter::pointToTwip(0))
);
$metaDataSection = $phpWord->addSection();
$metaDataSection->addText(
"Legal Name: "Sample Legal Name ",
array('bold' => true)
);
$metaDataSection-> like addComment() functionality
There is an example for doing exactly this on the PHPWord sources.
A fragment of the example is:
There is also some information in the documentation.