0.13.0
版本发布时间: 2016-07-31 18:38:18
PHPOffice/PHPWord最新发布版本:1.1.0(2023-05-30 16:01:59)
This release brings several improvements in TemplateProcessor
, automatic output escaping feature for OOXML, ODF, HTML, and RTF (turned off, by default). It also introduces constants for horizontal alignment options, and resolves some issues with PHP 7. Manual installation feature has been dropped since the release. Please, use Composer to install PHPWord.
Added
- Introduced the
\PhpOffice\PhpWord\SimpleType\Jc
simple type. - @RomanSyroeshko - Introduced the
\PhpOffice\PhpWord\SimpleType\JcTable
simple type. - @RomanSyroeshko - Introduced writer for the "Paragraph Alignment" element (see
\PhpOffice\PhpWord\Writer\Word2007\Element\ParagraphAlignment
). - @RomanSyroeshko - Introduced writer for the "Table Alignment" element (see
\PhpOffice\PhpWord\Writer\Word2007\Element\TableAlignment
). - @RomanSyroeshko - Supported indexed arrays in arguments of
TemplateProcessor::setValue()
. - @RomanSyroeshko #618 - Introduced automatic output escaping for OOXML, ODF, HTML, and RTF. To turn the feature on use
phpword.ini
or\PhpOffice\PhpWord\Settings
. - @RomanSyroeshko #483 - Supported processing of headers and footers in
TemplateProcessor::applyXslStyleSheet()
. - @RomanSyroeshko #335
Changed
- Improved error message for the case when
autoload.php
is not found. - @RomanSyroeshko #371 - Renamed the
align
option ofNumberingLevel
,Frame
,Table
, andParagraph
styles intoalignment
. - @RomanSyroeshko - Improved performance of
TemplateProcessor::setValue()
. - @kazitanvirahsan #614, #617
Deprecated
-
getAlign
andsetAlign
methods ofNumberingLevel
,Frame
,Table
, andParagraph
styles. Use the correspondentgetAlignment
andsetAlignment
methods instead. - @RomanSyroeshko -
left
,right
, andjustify
alignment options for paragraphs (now are mapped toJc::START
,Jc::END
, andJc::BOTH
). - @RomanSyroeshko -
left
,right
, andjustify
alignment options for tables (now are mapped toJc::START
,Jc::END
, andJc::CENTER
). - @RomanSyroeshko -
TCPDF
due to its limited HTML support. UseDomPDF
orMPDF
writer instead. - @RomanSyroeshko #399
Removed
-
\PhpOffice\PhpWord\Style\Alignment
. Style properties, which previously stored instances of this class, now deal with strings. In each case set of available string values is defined by the correspondent simple type. - @RomanSyroeshko - Manual installation support. Since the release we have dependencies on third party libraries,
so installation via ZIP-archive download is not an option anymore. To install PHPWord use Composer.
We also removed
\PhpOffice\PhpWord\Autoloader
, because the latter change made it completely useless. Autoloaders provided by Composer are in use now (seebootstrap.php
). - @RomanSyroeshko -
\PhpOffice\PhpWord\Shared\Drawing
replaced by\PhpOffice\Common\Drawing
. - @Progi1984 #658 -
\PhpOffice\PhpWord\Shared\Font
. - @Progi1984 #658 -
\PhpOffice\PhpWord\Shared\String
replaced by\PhpOffice\Common\Text
. - @Progi1984 @RomanSyroeshko #658 -
\PhpOffice\PhpWord\Shared\XMLReader
replaced by\PhpOffice\Common\XMLReader
. - @Progi1984 #658 -
\PhpOffice\PhpWord\Shared\XMLWriter
replaced by\PhpOffice\Common\XMLWriter
. - @Progi1984 @RomanSyroeshko #658 -
AbstractContainer::addMemoryImage()
. UseAbstractContainer::addImage()
instead.
Fixed
-
Undefined property
error while reading MS-DOC documents. - @jaberu #610 - Corrupted OOXML template issue in case when its names is broken immediately after
$
sign. That case wasn't taken into account in implementation ofTemplateProcessor::fixBrokenMacros()
. - @RomanSyroeshko @d-damien #548