Update README.md, docs, and version number
This commit is contained in:
parent
004edd5346
commit
dfccd54e66
17
README.md
17
README.md
|
|
@ -57,11 +57,14 @@ the following lines to your ``composer.json``.
|
||||||
The following is a basic example of the PHPWord library. More examples are provided in the [samples folder](samples/).
|
The following is a basic example of the PHPWord library. More examples are provided in the [samples folder](samples/).
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$PHPWord = new PHPWord();
|
require_once 'src/PhpWord/Autoloader.php';
|
||||||
|
PhpOffice\PhpWord\Autoloader::register();
|
||||||
|
|
||||||
|
$phpWord = new \PhpOffice\PhpWord\PhpWord();
|
||||||
|
|
||||||
// Every element you want to append to the word document is placed in a section.
|
// Every element you want to append to the word document is placed in a section.
|
||||||
// To create a basic section:
|
// To create a basic section:
|
||||||
$section = $PHPWord->createSection();
|
$section = $phpWord->createSection();
|
||||||
|
|
||||||
// After creating a section, you can append elements:
|
// After creating a section, you can append elements:
|
||||||
$section->addText('Hello world!');
|
$section->addText('Hello world!');
|
||||||
|
|
@ -72,13 +75,13 @@ $section->addText('Hello world! I am formatted.',
|
||||||
|
|
||||||
// If you often need the same style again you can create a user defined style
|
// If you often need the same style again you can create a user defined style
|
||||||
// to the word document and give the addText function the name of the style:
|
// to the word document and give the addText function the name of the style:
|
||||||
$PHPWord->addFontStyle('myOwnStyle',
|
$phpWord->addFontStyle('myOwnStyle',
|
||||||
array('name'=>'Verdana', 'size'=>14, 'color'=>'1B2232'));
|
array('name'=>'Verdana', 'size'=>14, 'color'=>'1B2232'));
|
||||||
$section->addText('Hello world! I am formatted by a user defined style',
|
$section->addText('Hello world! I am formatted by a user defined style',
|
||||||
'myOwnStyle');
|
'myOwnStyle');
|
||||||
|
|
||||||
// You can also put the appended element to local object like this:
|
// You can also put the appended element to local object like this:
|
||||||
$fontStyle = new PHPWord_Style_Font();
|
$fontStyle = new \PhpOffice\PhpWord\Style\Font();
|
||||||
$fontStyle->setBold(true);
|
$fontStyle->setBold(true);
|
||||||
$fontStyle->setName('Verdana');
|
$fontStyle->setName('Verdana');
|
||||||
$fontStyle->setSize(22);
|
$fontStyle->setSize(22);
|
||||||
|
|
@ -86,13 +89,13 @@ $myTextElement = $section->addText('Hello World!');
|
||||||
$myTextElement->setFontStyle($fontStyle);
|
$myTextElement->setFontStyle($fontStyle);
|
||||||
|
|
||||||
// Finally, write the document:
|
// Finally, write the document:
|
||||||
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
|
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
|
||||||
$objWriter->save('helloWorld.docx');
|
$objWriter->save('helloWorld.docx');
|
||||||
|
|
||||||
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'ODText');
|
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'ODText');
|
||||||
$objWriter->save('helloWorld.odt');
|
$objWriter->save('helloWorld.odt');
|
||||||
|
|
||||||
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'RTF');
|
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'RTF');
|
||||||
$objWriter->save('helloWorld.rtf');
|
$objWriter->save('helloWorld.rtf');
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,13 @@ General usage
|
||||||
Basic example
|
Basic example
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
The following is a basic example of the PHPWord library. More examples
|
The following is a basic example of the PhpWord library. More examples
|
||||||
are provided in the `samples folder <https://github.com/PHPOffice/PHPWord/tree/master/samples/>`__.
|
are provided in the `samples folder <https://github.com/PHPOffice/PHPWord/tree/master/samples/>`__.
|
||||||
|
|
||||||
.. code-block:: php
|
.. code-block:: php
|
||||||
|
|
||||||
require_once '../src/PhpWord/PhpWord.php';
|
require_once 'src/PhpWord/Autoloader.php';
|
||||||
|
PhpOffice\PhpWord\Autoloader::register();
|
||||||
|
|
||||||
$phpWord = new \PhpOffice\PhpWord\PhpWord();
|
$phpWord = new \PhpOffice\PhpWord\PhpWord();
|
||||||
|
|
||||||
|
|
@ -34,7 +35,7 @@ are provided in the `samples folder <https://github.com/PHPOffice/PHPWord/tree/m
|
||||||
'myOwnStyle');
|
'myOwnStyle');
|
||||||
|
|
||||||
// You can also put the appended element to local object like this:
|
// You can also put the appended element to local object like this:
|
||||||
$fontStyle = new PHPWord_Style_Font();
|
$fontStyle = new \PhpOffice\PhpWord\Style\Font();
|
||||||
$fontStyle->setBold(true);
|
$fontStyle->setBold(true);
|
||||||
$fontStyle->setName('Verdana');
|
$fontStyle->setName('Verdana');
|
||||||
$fontStyle->setSize(22);
|
$fontStyle->setSize(22);
|
||||||
|
|
@ -42,9 +43,15 @@ are provided in the `samples folder <https://github.com/PHPOffice/PHPWord/tree/m
|
||||||
$myTextElement->setFontStyle($fontStyle);
|
$myTextElement->setFontStyle($fontStyle);
|
||||||
|
|
||||||
// Finally, write the document:
|
// Finally, write the document:
|
||||||
$objWriter = PHPWord_IOFactory::createWriter($phpWord, 'Word2007');
|
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
|
||||||
$objWriter->save('helloWorld.docx');
|
$objWriter->save('helloWorld.docx');
|
||||||
|
|
||||||
|
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'ODText');
|
||||||
|
$objWriter->save('helloWorld.odt');
|
||||||
|
|
||||||
|
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'RTF');
|
||||||
|
$objWriter->save('helloWorld.rtf');
|
||||||
|
|
||||||
Default font
|
Default font
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
|
@ -82,19 +89,19 @@ Measurement units
|
||||||
The base length unit in Open Office XML is twip. Twip means "TWentieth
|
The base length unit in Open Office XML is twip. Twip means "TWentieth
|
||||||
of an Inch Point", i.e. 1 twip = 1/1440 inch.
|
of an Inch Point", i.e. 1 twip = 1/1440 inch.
|
||||||
|
|
||||||
You can use PHPWord helper functions to convert inches, centimeters, or
|
You can use PhpWord helper functions to convert inches, centimeters, or
|
||||||
points to twips.
|
points to twips.
|
||||||
|
|
||||||
.. code-block:: php
|
.. code-block:: php
|
||||||
|
|
||||||
// Paragraph with 6 points space after
|
// Paragraph with 6 points space after
|
||||||
$phpWord->addParagraphStyle('My Style', array(
|
$phpWord->addParagraphStyle('My Style', array(
|
||||||
'spaceAfter' => PHPWord_Shared_Font::pointSizeToTwips(6))
|
'spaceAfter' => \PhpOffice\PhpWord\Shared\Font::pointSizeToTwips(6))
|
||||||
);
|
);
|
||||||
|
|
||||||
$section = $phpWord->createSection();
|
$section = $phpWord->createSection();
|
||||||
$sectionStyle = $section->getSettings();
|
$sectionStyle = $section->getSettings();
|
||||||
// half inch left margin
|
// half inch left margin
|
||||||
$sectionStyle->setMarginLeft(PHPWord_Shared_Font::inchSizeToTwips(.5));
|
$sectionStyle->setMarginLeft(\PhpOffice\PhpWord\Shared\Font::inchSizeToTwips(.5));
|
||||||
// 2 cm right margin
|
// 2 cm right margin
|
||||||
$sectionStyle->setMarginRight(PHPWord_Shared_Font::centimeterSizeToTwips(2));
|
$sectionStyle->setMarginRight(\PhpOffice\PhpWord\Shared\Font::centimeterSizeToTwips(2));
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,14 @@
|
||||||
You can adapt this file completely to your liking, but it should at least
|
You can adapt this file completely to your liking, but it should at least
|
||||||
contain the root `toctree` directive.
|
contain the root `toctree` directive.
|
||||||
|
|
||||||
Welcome to PHPWord's documentation
|
Welcome to PhpWord's documentation
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
|PHPWord|
|
|PhpWord|
|
||||||
|
|
||||||
PHPWord is a library written in pure PHP that provides a set of classes to
|
PhpWord is a library written in pure PHP that provides a set of classes to
|
||||||
write to and read from different document file formats. The current version of
|
write to and read from different document file formats. The current version of
|
||||||
PHPWord supports Microsoft Office Open XML (OOXML or OpenXML), OASIS Open
|
PhpWord supports Microsoft Office Open XML (OOXML or OpenXML), OASIS Open
|
||||||
Document Format for Office Applications (OpenDocument or ODF), and Rich Text
|
Document Format for Office Applications (OpenDocument or ODF), and Rich Text
|
||||||
Format (RTF).
|
Format (RTF).
|
||||||
|
|
||||||
|
|
@ -35,4 +35,4 @@ Indices and tables
|
||||||
* :ref:`modindex`
|
* :ref:`modindex`
|
||||||
* :ref:`search`
|
* :ref:`search`
|
||||||
|
|
||||||
.. |PHPWord| image:: images/phpword.png
|
.. |PhpWord| image:: images/phpword.png
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
Introduction
|
Introduction
|
||||||
============
|
============
|
||||||
|
|
||||||
PHPWord is a library written in pure PHP that provides a set of classes
|
PhpWord is a library written in pure PHP that provides a set of classes
|
||||||
to write to and read from different document file formats. The current
|
to write to and read from different document file formats. The current
|
||||||
version of PHPWord supports Microsoft `Office Open
|
version of PhpWord supports Microsoft `Office Open
|
||||||
XML <http://en.wikipedia.org/wiki/Office_Open_XML>`__ (OOXML or
|
XML <http://en.wikipedia.org/wiki/Office_Open_XML>`__ (OOXML or
|
||||||
OpenXML), OASIS `Open Document Format for Office
|
OpenXML), OASIS `Open Document Format for Office
|
||||||
Applications <http://en.wikipedia.org/wiki/OpenDocument>`__
|
Applications <http://en.wikipedia.org/wiki/OpenDocument>`__
|
||||||
|
|
@ -16,8 +16,8 @@ No Windows operating system is needed for usage because the resulting
|
||||||
DOCX, ODT, or RTF files can be opened by all major `word processing
|
DOCX, ODT, or RTF files can be opened by all major `word processing
|
||||||
softwares <http://en.wikipedia.org/wiki/List_of_word_processors>`__.
|
softwares <http://en.wikipedia.org/wiki/List_of_word_processors>`__.
|
||||||
|
|
||||||
PHPWord is an open source project licensed under LGPL.
|
PhpWord is an open source project licensed under LGPL.
|
||||||
PHPWord is `unit tested <https://travis-ci.org/PHPOffice/PHPWord>`__ to
|
PhpWord is `unit tested <https://travis-ci.org/PHPOffice/PHPWord>`__ to
|
||||||
make sure that the released versions are stable.
|
make sure that the released versions are stable.
|
||||||
|
|
||||||
**Want to contribute?** `Fork
|
**Want to contribute?** `Fork
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ Optional PHP extensions:
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
There are two ways to install PHPWord, i.e. via
|
There are two ways to install PhpWord, i.e. via
|
||||||
`Composer <http://getcomposer.org/>`__ or manually by downloading the
|
`Composer <http://getcomposer.org/>`__ or manually by downloading the
|
||||||
library.
|
library.
|
||||||
|
|
||||||
|
|
@ -44,7 +44,7 @@ To install via Composer, add the following lines to your
|
||||||
Manual install
|
Manual install
|
||||||
~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~
|
||||||
|
|
||||||
To install manually, `download PHPWord package from
|
To install manually, `download PhpWord package from
|
||||||
github <https://github.com/PHPOffice/PHPWord/archive/master.zip>`__.
|
github <https://github.com/PHPOffice/PHPWord/archive/master.zip>`__.
|
||||||
Extract the package and put the contents to your machine. To use the
|
Extract the package and put the contents to your machine. To use the
|
||||||
library, include ``src/PhpWord/Autoloader.php`` in your script and
|
library, include ``src/PhpWord/Autoloader.php`` in your script and
|
||||||
|
|
@ -60,5 +60,5 @@ Using samples
|
||||||
|
|
||||||
After installation, you can browse and use the samples that we've
|
After installation, you can browse and use the samples that we've
|
||||||
provided, either by command line or using browser. If you can access
|
provided, either by command line or using browser. If you can access
|
||||||
your PHPWord library folder using browser, point your browser to the
|
your PhpWord library folder using browser, point your browser to the
|
||||||
``samples`` folder, e.g. ``http://localhost/PhpWord/samples/``.
|
``samples`` folder, e.g. ``http://localhost/PhpWord/samples/``.
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ replaced by any value you wish. Only single-line values can be replaced.
|
||||||
To load a template file, use the ``loadTemplate`` method. After loading
|
To load a template file, use the ``loadTemplate`` method. After loading
|
||||||
the docx template, you can use the ``setValue`` method to change the
|
the docx template, you can use the ``setValue`` method to change the
|
||||||
value of a search pattern. The search-pattern model is:
|
value of a search pattern. The search-pattern model is:
|
||||||
``${search-pattern}``. It is not possible to add new PHPWord elements to
|
``${search-pattern}``. It is not possible to add new PhpWord elements to
|
||||||
a loaded template file.
|
a loaded template file.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PhpWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014 PHPWord
|
* Copyright (c) 2014 PhpWord
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
@ -18,12 +18,11 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2014 PHPWord
|
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exceptions;
|
namespace PhpOffice\PhpWord\Exceptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PhpWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014 PHPWord
|
* Copyright (c) 2014 PhpWord
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
@ -18,12 +18,11 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2014 PHPWord
|
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exceptions;
|
namespace PhpOffice\PhpWord\Exceptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PhpWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014 PHPWord
|
* Copyright (c) 2014 PhpWord
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
@ -18,12 +18,11 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2014 PHPWord
|
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exceptions;
|
namespace PhpOffice\PhpWord\Exceptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PhpWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014 PHPWord
|
* Copyright (c) 2014 PhpWord
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
@ -18,12 +18,11 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2014 PHPWord
|
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exceptions;
|
namespace PhpOffice\PhpWord\Exceptions;
|
||||||
|
|
||||||
use InvalidArgumentException;
|
use InvalidArgumentException;
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PhpWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014 PHPWord
|
* Copyright (c) 2014 PhpWord
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
@ -18,12 +18,11 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2014 PHPWord
|
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exceptions;
|
namespace PhpOffice\PhpWord\Exceptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader;
|
namespace PhpOffice\PhpWord\Reader;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader;
|
namespace PhpOffice\PhpWord\Reader;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader;
|
namespace PhpOffice\PhpWord\Reader;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section\Footer;
|
namespace PhpOffice\PhpWord\Section\Footer;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section\Table;
|
namespace PhpOffice\PhpWord\Section\Table;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2013 PhpWord
|
* @copyright Copyright (c) 2013 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section\Table;
|
namespace PhpOffice\PhpWord\Section\Table;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Section;
|
namespace PhpOffice\PhpWord\Section;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2013 PhpWord
|
* @copyright Copyright (c) 2013 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer;
|
namespace PhpOffice\PhpWord\Writer;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer;
|
namespace PhpOffice\PhpWord\Writer;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText;
|
namespace PhpOffice\PhpWord\Writer\ODText;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText;
|
namespace PhpOffice\PhpWord\Writer\ODText;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText;
|
namespace PhpOffice\PhpWord\Writer\ODText;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText;
|
namespace PhpOffice\PhpWord\Writer\ODText;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText;
|
namespace PhpOffice\PhpWord\Writer\ODText;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText;
|
namespace PhpOffice\PhpWord\Writer\ODText;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer;
|
namespace PhpOffice\PhpWord\Writer;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer;
|
namespace PhpOffice\PhpWord\Writer;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2014 PhpWord
|
* @copyright Copyright (c) 2014 PhpWord
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version 0.8.0
|
* @version 0.9.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\Word2007;
|
namespace PhpOffice\PhpWord\Writer\Word2007;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue