Changed version number
This commit is contained in:
parent
dd5e20e7e5
commit
be1e357b83
|
|
@ -9,7 +9,7 @@ Fork us!
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
* PHP version 5.2.0 or higher
|
* PHP version 5.3.0 or higher
|
||||||
|
|
||||||
## License
|
## License
|
||||||
PHPWord is licensed under [LGPL (GNU LESSER GENERAL PUBLIC LICENSE)](https://github.com/PHPOffice/PHPWord/blob/master/license.md)
|
PHPWord is licensed under [LGPL (GNU LESSER GENERAL PUBLIC LICENSE)](https://github.com/PHPOffice/PHPWord/blob/master/license.md)
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
2013-12-11 (v1.0):
|
2013-12-11 (v0.7.0):
|
||||||
- Feature: (gavroche) Added composer file
|
- Feature: (gavroche) Added composer file
|
||||||
- Feature: (gavroche) Added support for image wrapping style
|
- Feature: (gavroche) Added support for image wrapping style
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.2.0"
|
"php": ">=5.3.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "3.7.28"
|
"phpunit/phpunit": "3.7.28"
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,9 +20,9 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** PHPWORD_BASE_PATH */
|
/** PHPWORD_BASE_PATH */
|
||||||
|
|
@ -32,13 +32,8 @@ if (!defined('PHPWORD_BASE_PATH')) {
|
||||||
PHPWord_Autoloader::register();
|
PHPWord_Autoloader::register();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* Class PHPWord
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord
|
class PHPWord
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,13 +20,16 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define('PHPWORD_BASE_PATH', realpath(__DIR__ . '/../') . '/');
|
define('PHPWORD_BASE_PATH', realpath(__DIR__ . '/../') . '/');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Autoloader
|
||||||
|
*/
|
||||||
class PHPWord_Autoloader
|
class PHPWord_Autoloader
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_DocumentProperties
|
* PHPWord_DocumentProperties
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2009 - 2011 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_DocumentProperties
|
class PHPWord_DocumentProperties
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_HashTable
|
* PHPWord_HashTable
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_HashTable
|
class PHPWord_HashTable
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_IOFactory
|
* Class PHPWord_IOFactory
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_IOFactory
|
class PHPWord_IOFactory
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Media
|
* Class PHPWord_Media
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Media
|
class PHPWord_Media
|
||||||
{
|
{
|
||||||
|
|
@ -72,7 +67,6 @@ class PHPWord_Media
|
||||||
*
|
*
|
||||||
* @param string $src
|
* @param string $src
|
||||||
* @param string $type
|
* @param string $type
|
||||||
*
|
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public static function addSectionMediaElement($src, $type, PHPWord_Section_MemoryImage $memoryImage = null)
|
public static function addSectionMediaElement($src, $type, PHPWord_Section_MemoryImage $memoryImage = null)
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section
|
* Class PHPWord_Section
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section
|
class PHPWord_Section
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Footer
|
* Class PHPWord_Section_Footer
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Footer
|
class PHPWord_Section_Footer
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Footer_PreserveText
|
* Class PHPWord_Section_Footer_PreserveText
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section_Footer
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Footer_PreserveText
|
class PHPWord_Section_Footer_PreserveText
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Header
|
* Class PHPWord_Section_Header
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Header
|
class PHPWord_Section_Header
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Image
|
* Class PHPWord_Section_Image
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Image
|
class PHPWord_Section_Image
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Link
|
* Class PHPWord_Section_Link
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Link
|
class PHPWord_Section_Link
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_ListItem
|
* Class PHPWord_Section_ListItem
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_ListItem
|
class PHPWord_Section_ListItem
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_MemoryImage
|
* Class PHPWord_Section_MemoryImage
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_MemoryImage
|
class PHPWord_Section_MemoryImage
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Object
|
* Class PHPWord_Section_Object
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Object
|
class PHPWord_Section_Object
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_PageBreak
|
* Class PHPWord_Section_PageBreak
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_PageBreak
|
class PHPWord_Section_PageBreak
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Settings
|
* Class PHPWord_Section_Settings
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Settings
|
class PHPWord_Section_Settings
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Table
|
* Class PHPWord_Section_Table
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Table
|
class PHPWord_Section_Table
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Table_Cell
|
* Class PHPWord_Section_Table_Cell
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section_Table
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Table_Cell
|
class PHPWord_Section_Table_Cell
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Text
|
* Class PHPWord_Section_Text
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Text
|
class PHPWord_Section_Text
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_TextBreak
|
* Class PHPWord_Section_TextBreak
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_TextBreak
|
class PHPWord_Section_TextBreak
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_TextRun
|
* Class PHPWord_Section_TextRun
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_TextRun
|
class PHPWord_Section_TextRun
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Section_Title
|
* Class PHPWord_Section_Title
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Section_Title
|
class PHPWord_Section_Title
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Shared_Drawing
|
||||||
|
*/
|
||||||
class PHPWord_Shared_Drawing
|
class PHPWord_Shared_Drawing
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Shared_File
|
||||||
|
*/
|
||||||
class PHPWord_Shared_File
|
class PHPWord_Shared_File
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Shared_Font
|
||||||
|
*/
|
||||||
class PHPWord_Shared_Font
|
class PHPWord_Shared_Font
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Shared_String
|
||||||
|
*/
|
||||||
class PHPWord_Shared_String
|
class PHPWord_Shared_String
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,11 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
if (!defined('DATE_W3C')) {
|
if (!defined('DATE_W3C')) {
|
||||||
define('DATE_W3C', 'Y-m-d\TH:i:sP');
|
define('DATE_W3C', 'Y-m-d\TH:i:sP');
|
||||||
}
|
}
|
||||||
|
|
@ -33,9 +32,6 @@ if (!defined('DATE_W3C')) {
|
||||||
/**
|
/**
|
||||||
* Class PHPWord_Shared_XMLWriter
|
* Class PHPWord_Shared_XMLWriter
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
* @method bool startElement(string $name)
|
* @method bool startElement(string $name)
|
||||||
* @method bool writeAttribute(string $name, string $value)
|
* @method bool writeAttribute(string $name, string $value)
|
||||||
* @method bool endElement()
|
* @method bool endElement()
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,16 +20,17 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/** Register new zip wrapper */
|
/** Register new zip wrapper */
|
||||||
PHPWord_Shared_ZipStreamWrapper::register();
|
PHPWord_Shared_ZipStreamWrapper::register();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Shared_ZipStreamWrapper
|
||||||
|
*/
|
||||||
class PHPWord_Shared_ZipStreamWrapper
|
class PHPWord_Shared_ZipStreamWrapper
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Style
|
* Class PHPWord_Style
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Style
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Style
|
class PHPWord_Style
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Style_Cell
|
* Class PHPWord_Style_Cell
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Style
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Style_Cell
|
class PHPWord_Style_Cell
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Style_Font
|
* Class PHPWord_Style_Font
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Style
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Style_Font
|
class PHPWord_Style_Font
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Style_Image
|
* Class PHPWord_Style_Image
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Section
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Style_Image
|
class PHPWord_Style_Image
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Style_ListItem
|
* Class PHPWord_Style_ListItem
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Style
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Style_ListItem
|
class PHPWord_Style_ListItem
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Style_Paragraph
|
* Class PHPWord_Style_Paragraph
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Style
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Style_Paragraph
|
class PHPWord_Style_Paragraph
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Style_TOC
|
* Class PHPWord_Style_TOC
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Style
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Style_TOC
|
class PHPWord_Style_TOC
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Style_Table
|
||||||
|
*/
|
||||||
class PHPWord_Style_Table
|
class PHPWord_Style_Table
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Style_TableFull
|
* Class PHPWord_Style_TableFull
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Style
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Style_TableFull
|
class PHPWord_Style_TableFull
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_TOC
|
* Class PHPWord_TOC
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_TOC
|
|
||||||
* @copyright Copyright (c) 2011 PHPWord
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_TOC
|
class PHPWord_TOC
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,18 +20,13 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_DocumentProperties
|
* Class PHPWord_Template
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord
|
|
||||||
* @copyright Copyright (c) 2009 - 2011 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Template
|
class PHPWord_Template
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface PHPWord_Writer_IWriter
|
||||||
|
*/
|
||||||
interface PHPWord_Writer_IWriter
|
interface PHPWord_Writer_IWriter
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,11 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord_Writer_PowerPoint2007
|
* @package PHPWord_Writer_PowerPoint2007
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_ODText
|
||||||
|
*/
|
||||||
class PHPWord_Writer_ODText implements PHPWord_Writer_IWriter
|
class PHPWord_Writer_ODText implements PHPWord_Writer_IWriter
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -19,19 +19,14 @@
|
||||||
* 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
|
* @category PHPWord
|
||||||
* @package PHPWord_Writer_ODText
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Writer_ODText_Content
|
* Class PHPWord_Writer_ODText_Manifest
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Writer_ODText
|
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Writer_ODText_Content extends PHPWord_Writer_ODText_WriterPart
|
class PHPWord_Writer_ODText_Content extends PHPWord_Writer_ODText_WriterPart
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -19,19 +19,14 @@
|
||||||
* 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
|
* @category PHPWord
|
||||||
* @package PHPWord_Writer_ODText
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Writer_ODText_Manifest
|
* Class PHPWord_Writer_ODText_Manifest
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Writer_ODText
|
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Writer_ODText_Manifest extends PHPWord_Writer_ODText_WriterPart
|
class PHPWord_Writer_ODText_Manifest extends PHPWord_Writer_ODText_WriterPart
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -19,19 +19,14 @@
|
||||||
* 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
|
* @category PHPWord
|
||||||
* @package PHPWord_Writer_ODText
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Writer_ODText_Meta
|
* Class PHPWord_Writer_ODText_Meta
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Writer_ODText
|
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Writer_ODText_Meta extends PHPWord_Writer_ODText_WriterPart
|
class PHPWord_Writer_ODText_Meta extends PHPWord_Writer_ODText_WriterPart
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -19,19 +19,14 @@
|
||||||
* 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
|
* @category PHPWord
|
||||||
* @package PHPWord_Writer_ODText
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Writer_ODText_Mimetype
|
* Class PHPWord_Writer_ODText_Mimetype
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Writer_ODText
|
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Writer_ODText_Mimetype extends PHPWord_Writer_ODText_WriterPart
|
class PHPWord_Writer_ODText_Mimetype extends PHPWord_Writer_ODText_WriterPart
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -19,19 +19,14 @@
|
||||||
* 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
|
* @category PHPWord
|
||||||
* @package PHPWord_Writer_ODText
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Writer_ODText_Styles
|
* Class PHPWord_Writer_ODText_Styles
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Writer_ODText
|
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
class PHPWord_Writer_ODText_Styles extends PHPWord_Writer_ODText_WriterPart
|
class PHPWord_Writer_ODText_Styles extends PHPWord_Writer_ODText_WriterPart
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -19,19 +19,14 @@
|
||||||
* 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
|
* @category PHPWord
|
||||||
* @package PHPWord_Writer_PowerPoint2007
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPWord_Writer_ODText_WriterPart
|
* Class PHPWord_Writer_ODText_WriterPart
|
||||||
*
|
|
||||||
* @category PHPWord
|
|
||||||
* @package PHPWord_Writer_ODText
|
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
|
||||||
*/
|
*/
|
||||||
abstract class PHPWord_Writer_ODText_WriterPart
|
abstract class PHPWord_Writer_ODText_WriterPart
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2009 - 2010 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,11 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord_Writer_RTF
|
* @package PHPWord_Writer_RTF
|
||||||
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 ##VERSION##, ##DATE##
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_RTF
|
||||||
|
*/
|
||||||
class PHPWord_Writer_RTF implements PHPWord_Writer_IWriter
|
class PHPWord_Writer_RTF implements PHPWord_Writer_IWriter
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007 implements PHPWord_Writer_IWriter
|
class PHPWord_Writer_Word2007 implements PHPWord_Writer_IWriter
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_Base
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_Base extends PHPWord_Writer_Word2007_WriterPart
|
class PHPWord_Writer_Word2007_Base extends PHPWord_Writer_Word2007_WriterPart
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_ContentTypes
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_ContentTypes extends PHPWord_Writer_Word2007_WriterPart
|
class PHPWord_Writer_Word2007_ContentTypes extends PHPWord_Writer_Word2007_WriterPart
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_DocProps
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_DocProps extends PHPWord_Writer_Word2007_WriterPart
|
class PHPWord_Writer_Word2007_DocProps extends PHPWord_Writer_Word2007_WriterPart
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_Document
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_Document extends PHPWord_Writer_Word2007_Base
|
class PHPWord_Writer_Word2007_Document extends PHPWord_Writer_Word2007_Base
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_DocumentRels
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_DocumentRels extends PHPWord_Writer_Word2007_WriterPart
|
class PHPWord_Writer_Word2007_DocumentRels extends PHPWord_Writer_Word2007_WriterPart
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_Footer
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_Footer extends PHPWord_Writer_Word2007_Base
|
class PHPWord_Writer_Word2007_Footer extends PHPWord_Writer_Word2007_Base
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_Header
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_Header extends PHPWord_Writer_Word2007_Base
|
class PHPWord_Writer_Word2007_Header extends PHPWord_Writer_Word2007_Base
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_Rels
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_Rels extends PHPWord_Writer_Word2007_WriterPart
|
class PHPWord_Writer_Word2007_Rels extends PHPWord_Writer_Word2007_WriterPart
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class PHPWord_Writer_Word2007_Styles
|
||||||
|
*/
|
||||||
class PHPWord_Writer_Word2007_Styles extends PHPWord_Writer_Word2007_Base
|
class PHPWord_Writer_Word2007_Styles extends PHPWord_Writer_Word2007_Base
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* PHPWord
|
* PHPWord
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 PHPWord
|
* Copyright (c) 2013 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
|
||||||
|
|
@ -20,12 +20,14 @@
|
||||||
*
|
*
|
||||||
* @category PHPWord
|
* @category PHPWord
|
||||||
* @package PHPWord
|
* @package PHPWord
|
||||||
* @copyright Copyright (c) 010 PHPWord
|
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/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 Beta 0.6.3, 08.07.2011
|
* @version 0.7.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract Class PHPWord_Writer_Word2007_WriterPart
|
||||||
|
*/
|
||||||
abstract class PHPWord_Writer_Word2007_WriterPart
|
abstract class PHPWord_Writer_Word2007_WriterPart
|
||||||
{
|
{
|
||||||
private $_parentWriter;
|
private $_parentWriter;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue