75 lines
2.2 KiB
PHP
75 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of PHPWord - A pure PHP library for reading and writing
|
|
* word processing documents.
|
|
*
|
|
* PHPWord is free software distributed under the terms of the GNU Lesser
|
|
* General Public License version 3 as published by the Free Software Foundation.
|
|
*
|
|
* For the full copyright and license information, please read the LICENSE
|
|
* file that was distributed with this source code. For the full list of
|
|
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
* @copyright 2010-2014 PHPWord contributors
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord;
|
|
|
|
use PhpOffice\PhpWord\Exception\Exception;
|
|
|
|
/**
|
|
* IO factory
|
|
*/
|
|
abstract class IOFactory
|
|
{
|
|
/**
|
|
* Create new writer
|
|
*
|
|
* @param PhpWord $phpWord
|
|
* @param string $name
|
|
* @return \PhpOffice\PhpWord\Writer\WriterInterface
|
|
* @throws \PhpOffice\PhpWord\Exception\Exception
|
|
*/
|
|
public static function createWriter(PhpWord $phpWord, $name = 'Word2007')
|
|
{
|
|
if (!in_array($name, array('WriterInterface', 'Word2007', 'ODText', 'RTF', 'HTML', 'PDF'))) {
|
|
throw new Exception("\"{$name}\" is not a valid writer.");
|
|
}
|
|
|
|
$fqName = "PhpOffice\\PhpWord\\Writer\\{$name}";
|
|
return new $fqName($phpWord);
|
|
}
|
|
|
|
/**
|
|
* Create new reader
|
|
*
|
|
* @param string $name
|
|
* @return \PhpOffice\PhpWord\Reader\ReaderInterface
|
|
* @throws \PhpOffice\PhpWord\Exception\Exception
|
|
*/
|
|
public static function createReader($name = 'Word2007')
|
|
{
|
|
if (!in_array($name, array('ReaderInterface', 'Word2007', 'ODText'))) {
|
|
throw new Exception("\"{$name}\" is not a valid reader.");
|
|
}
|
|
|
|
$fqName = "PhpOffice\\PhpWord\\Reader\\{$name}";
|
|
return new $fqName();
|
|
}
|
|
|
|
/**
|
|
* Loads PhpWord from file
|
|
*
|
|
* @param string $filename The name of the file
|
|
* @param string $readerName
|
|
* @return PhpWord
|
|
*/
|
|
public static function load($filename, $readerName = 'Word2007')
|
|
{
|
|
$reader = self::createReader($readerName);
|
|
return $reader->load($filename);
|
|
}
|
|
}
|