31 lines
561 B
PHP
31 lines
561 B
PHP
<?php
|
|
/**
|
|
* PHPWord
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
* @copyright 2014 PHPWord
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Reader\Word2007;
|
|
|
|
/**
|
|
* Extended properties reader
|
|
*/
|
|
class DocPropsApp extends DocPropsCore
|
|
{
|
|
/**
|
|
* Property mapping
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $mapping = array('Company' => 'setCompany', 'Manager' => 'setManager');
|
|
|
|
/**
|
|
* Callback functions
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $callbacks = array();
|
|
}
|