Merge remote-tracking branch 'upstream/develop' into nonstatic
This commit is contained in:
commit
fd4fa11390
|
|
@ -16,7 +16,7 @@ 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 `unit
|
PHPWord is an open source project licensed under LGPL version 3. PHPWord is `unit
|
||||||
tested <https://travis-ci.org/PHPOffice/PHPWord>`__ to make sure that
|
tested <https://travis-ci.org/PHPOffice/PHPWord>`__ to make sure that
|
||||||
the released versions are stable.
|
the released versions are stable.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ PHPWord is a library written in pure PHP that provides a set of classes to write
|
||||||
|
|
||||||
No Windows operating system is needed for usage because the resulting DOCX, ODT, or RTF files can be opened by all major [word processing softwares](http://en.wikipedia.org/wiki/List_of_word_processors).
|
No Windows operating system is needed for usage because the resulting DOCX, ODT, or RTF files can be opened by all major [word processing softwares](http://en.wikipedia.org/wiki/List_of_word_processors).
|
||||||
|
|
||||||
PHPWord is an open source project licensed under LGPL. PHPWord is [unit tested](https://travis-ci.org/PHPOffice/PHPWord) to make sure that the released versions are stable.
|
PHPWord is an open source project licensed under LGPL version 3. PHPWord is [unit tested](https://travis-ci.org/PHPOffice/PHPWord) to make sure that the released versions are stable.
|
||||||
|
|
||||||
**Want to contribute?** [Fork us](https://github.com/PHPOffice/PHPWord/fork) or [submit](https://github.com/PHPOffice/PHPWord/issues) your bug reports or feature requests to us.
|
**Want to contribute?** [Fork us](https://github.com/PHPOffice/PHPWord/fork) or [submit](https://github.com/PHPOffice/PHPWord/issues) your bug reports or feature requests to us.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,11 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\PhpWord;
|
|
||||||
use PhpOffice\PhpWord\Media;
|
|
||||||
use PhpOffice\PhpWord\Element\CheckBox;
|
use PhpOffice\PhpWord\Element\CheckBox;
|
||||||
use PhpOffice\PhpWord\Element\Image;
|
use PhpOffice\PhpWord\Element\Image;
|
||||||
use PhpOffice\PhpWord\Element\Link;
|
use PhpOffice\PhpWord\Element\Link;
|
||||||
|
|
@ -18,6 +16,8 @@ use PhpOffice\PhpWord\Element\ListItem;
|
||||||
use PhpOffice\PhpWord\Element\Object;
|
use PhpOffice\PhpWord\Element\Object;
|
||||||
use PhpOffice\PhpWord\Element\TextBreak;
|
use PhpOffice\PhpWord\Element\TextBreak;
|
||||||
use PhpOffice\PhpWord\Element\TextRun;
|
use PhpOffice\PhpWord\Element\TextRun;
|
||||||
|
use PhpOffice\PhpWord\Media;
|
||||||
|
use PhpOffice\PhpWord\PhpWord;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Container abstract class
|
* Container abstract class
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,11 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\Element\Image;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Header element
|
* Header element
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -4,14 +4,14 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\Settings;
|
|
||||||
use PhpOffice\PhpWord\Exception\InvalidImageException;
|
use PhpOffice\PhpWord\Exception\InvalidImageException;
|
||||||
use PhpOffice\PhpWord\Exception\UnsupportedImageTypeException;
|
use PhpOffice\PhpWord\Exception\UnsupportedImageTypeException;
|
||||||
|
use PhpOffice\PhpWord\Settings;
|
||||||
use PhpOffice\PhpWord\Style\Image as ImageStyle;
|
use PhpOffice\PhpWord\Style\Image as ImageStyle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,17 +4,17 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\PhpWord;
|
|
||||||
use PhpOffice\PhpWord\Element\PageBreak;
|
use PhpOffice\PhpWord\Element\PageBreak;
|
||||||
use PhpOffice\PhpWord\Element\Table;
|
|
||||||
use PhpOffice\PhpWord\Element\TOC;
|
use PhpOffice\PhpWord\Element\TOC;
|
||||||
|
use PhpOffice\PhpWord\Element\Table;
|
||||||
use PhpOffice\PhpWord\Element\Title;
|
use PhpOffice\PhpWord\Element\Title;
|
||||||
use PhpOffice\PhpWord\Exception\Exception;
|
use PhpOffice\PhpWord\Exception\Exception;
|
||||||
|
use PhpOffice\PhpWord\PhpWord;
|
||||||
use PhpOffice\PhpWord\Style\Section as SectionSettings;
|
use PhpOffice\PhpWord\Style\Section as SectionSettings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Element;
|
namespace PhpOffice\PhpWord\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exception;
|
namespace PhpOffice\PhpWord\Exception;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exception;
|
namespace PhpOffice\PhpWord\Exception;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exception;
|
namespace PhpOffice\PhpWord\Exception;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exception;
|
namespace PhpOffice\PhpWord\Exception;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Exception;
|
namespace PhpOffice\PhpWord\Exception;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -4,19 +4,19 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
||||||
|
use PhpOffice\PhpWord\Collection\Endnotes;
|
||||||
|
use PhpOffice\PhpWord\Collection\Footnotes;
|
||||||
|
use PhpOffice\PhpWord\Collection\Titles;
|
||||||
use PhpOffice\PhpWord\DocumentProperties;
|
use PhpOffice\PhpWord\DocumentProperties;
|
||||||
|
use PhpOffice\PhpWord\Element\Section;
|
||||||
|
use PhpOffice\PhpWord\Exception\Exception;
|
||||||
use PhpOffice\PhpWord\Style;
|
use PhpOffice\PhpWord\Style;
|
||||||
use PhpOffice\PhpWord\Template;
|
use PhpOffice\PhpWord\Template;
|
||||||
use PhpOffice\PhpWord\Collection\Titles;
|
|
||||||
use PhpOffice\PhpWord\Collection\Footnotes;
|
|
||||||
use PhpOffice\PhpWord\Collection\Endnotes;
|
|
||||||
use PhpOffice\PhpWord\Exception\Exception;
|
|
||||||
use PhpOffice\PhpWord\Element\Section;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord main class
|
* PHPWord main class
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader;
|
namespace PhpOffice\PhpWord\Reader;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader;
|
namespace PhpOffice\PhpWord\Reader;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\ODText;
|
namespace PhpOffice\PhpWord\Reader\ODText;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\ODText;
|
namespace PhpOffice\PhpWord\Reader\ODText;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader;
|
namespace PhpOffice\PhpWord\Reader;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader;
|
namespace PhpOffice\PhpWord\Reader;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Reader\Word2007;
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Shared;
|
namespace PhpOffice\PhpWord\Shared;
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,15 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\Style\Font;
|
use PhpOffice\PhpWord\Style\Font;
|
||||||
|
use PhpOffice\PhpWord\Style\Numbering;
|
||||||
use PhpOffice\PhpWord\Style\Paragraph;
|
use PhpOffice\PhpWord\Style\Paragraph;
|
||||||
use PhpOffice\PhpWord\Style\Table;
|
use PhpOffice\PhpWord\Style\Table;
|
||||||
use PhpOffice\PhpWord\Style\Numbering;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Style collection
|
* Style collection
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,11 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\Style\Shading;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Table cell style
|
* Table cell style
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -4,14 +4,13 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\PhpWord;
|
|
||||||
use PhpOffice\PhpWord\Exception\InvalidStyleException;
|
use PhpOffice\PhpWord\Exception\InvalidStyleException;
|
||||||
use PhpOffice\PhpWord\Style\Shading;
|
use PhpOffice\PhpWord\PhpWord;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Font style
|
* Font style
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,11 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\Style\NumberingLevel;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Numbering style
|
* Numbering style
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,13 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\Exception\InvalidStyleException;
|
use PhpOffice\PhpWord\Exception\InvalidStyleException;
|
||||||
use PhpOffice\PhpWord\Shared\String;
|
use PhpOffice\PhpWord\Shared\String;
|
||||||
use PhpOffice\PhpWord\Style\Indentation;
|
|
||||||
use PhpOffice\PhpWord\Style\Spacing;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Paragraph style
|
* Paragraph style
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,11 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\Style\LineNumbering;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Section settings
|
* Section settings
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,11 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Style;
|
namespace PhpOffice\PhpWord\Style;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\Style\Shading;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Table style
|
* Table style
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord;
|
namespace PhpOffice\PhpWord;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer;
|
namespace PhpOffice\PhpWord\Writer;
|
||||||
|
|
|
||||||
|
|
@ -4,21 +4,21 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer;
|
namespace PhpOffice\PhpWord\Writer;
|
||||||
|
|
||||||
use PhpOffice\PhpWord\PhpWord;
|
|
||||||
use PhpOffice\PhpWord\Style;
|
|
||||||
use PhpOffice\PhpWord\Element\AbstractElement;
|
use PhpOffice\PhpWord\Element\AbstractElement;
|
||||||
use PhpOffice\PhpWord\Exception\Exception;
|
use PhpOffice\PhpWord\Exception\Exception;
|
||||||
|
use PhpOffice\PhpWord\PhpWord;
|
||||||
use PhpOffice\PhpWord\Style\Font;
|
use PhpOffice\PhpWord\Style\Font;
|
||||||
use PhpOffice\PhpWord\Style\Paragraph;
|
use PhpOffice\PhpWord\Style\Paragraph;
|
||||||
|
use PhpOffice\PhpWord\Style;
|
||||||
use PhpOffice\PhpWord\Writer\HTML\Element\Element as ElementWriter;
|
use PhpOffice\PhpWord\Writer\HTML\Element\Element as ElementWriter;
|
||||||
use PhpOffice\PhpWord\Writer\HTML\Element\TextRun as TextRunWriter;
|
use PhpOffice\PhpWord\Writer\HTML\Element\TextRun as TextRunWriter;
|
||||||
use PhpOffice\PhpWord\Writer\HTML\Style\Generic as GenericStyleWriter;
|
|
||||||
use PhpOffice\PhpWord\Writer\HTML\Style\Font as FontStyleWriter;
|
use PhpOffice\PhpWord\Writer\HTML\Style\Font as FontStyleWriter;
|
||||||
|
use PhpOffice\PhpWord\Writer\HTML\Style\Generic as GenericStyleWriter;
|
||||||
use PhpOffice\PhpWord\Writer\HTML\Style\Paragraph as ParagraphStyleWriter;
|
use PhpOffice\PhpWord\Writer\HTML\Style\Paragraph as ParagraphStyleWriter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
namespace PhpOffice\PhpWord\Writer\HTML\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
namespace PhpOffice\PhpWord\Writer\HTML\Style;
|
||||||
|
|
|
||||||
|
|
@ -4,14 +4,14 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer;
|
namespace PhpOffice\PhpWord\Writer;
|
||||||
|
|
||||||
|
use PhpOffice\PhpWord\Exception\Exception;
|
||||||
use PhpOffice\PhpWord\Media;
|
use PhpOffice\PhpWord\Media;
|
||||||
use PhpOffice\PhpWord\PhpWord;
|
use PhpOffice\PhpWord\PhpWord;
|
||||||
use PhpOffice\PhpWord\Exception\Exception;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ODText writer
|
* ODText writer
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText\Element;
|
namespace PhpOffice\PhpWord\Writer\ODText\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText\Element;
|
namespace PhpOffice\PhpWord\Writer\ODText\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText\Element;
|
namespace PhpOffice\PhpWord\Writer\ODText\Element;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @link https://github.com/PHPOffice/PHPWord
|
* @link https://github.com/PHPOffice/PHPWord
|
||||||
* @copyright 2014 PHPWord
|
* @copyright 2014 PHPWord
|
||||||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PhpOffice\PhpWord\Writer\ODText\Element;
|
namespace PhpOffice\PhpWord\Writer\ODText\Element;
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue