2014-04-30 08:54:38 +07:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* PHPWord
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
|
|
|
* @copyright 2014 PHPWord
|
2014-05-04 21:03:28 +04:00
|
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
2014-04-30 08:54:38 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace PhpOffice\PhpWord\Writer\Word2007\Part;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Word2007 endnotes part writer
|
|
|
|
|
*/
|
|
|
|
|
class Endnotes extends Footnotes
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Name of XML root element
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $rootNode = 'w:endnotes';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Name of XML node element
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $elementNode = 'w:endnote';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Name of XML reference element
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $refNode = 'w:endnoteRef';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Reference style name
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $refStyle = 'EndnoteReference';
|
|
|
|
|
}
|