예제 #1
1
 /**
  * Test set/get PDF renderer
  */
 public function testSetGetPdfRenderer()
 {
     $domPdfPath = realpath(PHPWORD_TESTS_BASE_DIR . '/../vendor/dompdf/dompdf');
     $this->assertFalse(Settings::setPdfRenderer('FOO', 'dummy/path'));
     $this->assertTrue(Settings::setPdfRenderer(Settings::PDF_RENDERER_DOMPDF, $domPdfPath));
     $this->assertEquals(Settings::PDF_RENDERER_DOMPDF, Settings::getPdfRendererName());
     $this->assertEquals($domPdfPath, Settings::getPdfRendererPath());
     $this->assertFalse(Settings::setPdfRendererPath('dummy/path'));
 }
예제 #2
0
파일: DomPDF.php 프로젝트: kaantunc/MYK-BOR
 /**
  * Create new instance
  *
  * @param PhpWord $phpWord PhpWord object
  */
 public function __construct(PhpWord $phpWord)
 {
     parent::__construct($phpWord);
     $configFile = Settings::getPdfRendererPath() . '/dompdf_config.inc.php';
     if (file_exists($configFile)) {
         require_once $configFile;
     } else {
         throw new Exception('Unable to load PDF Rendering library');
     }
 }
예제 #3
0
파일: PDF.php 프로젝트: hcvcastro/pxp
 /**
  * Instantiate a new renderer of the configured type within this container class
  *
  * @param \PhpOffice\PhpWord\PhpWord $phpWord
  * @throws \PhpOffice\PhpWord\Exception\Exception
  */
 public function __construct(PhpWord $phpWord)
 {
     $pdfLibraryName = Settings::getPdfRendererName();
     $pdfLibraryPath = Settings::getPdfRendererPath();
     if (is_null($pdfLibraryName) || is_null($pdfLibraryPath)) {
         throw new Exception("PDF rendering library or library path has not been defined.");
     }
     $includePath = str_replace('\\', '/', get_include_path());
     $rendererPath = str_replace('\\', '/', $pdfLibraryPath);
     if (strpos($rendererPath, $includePath) === false) {
         set_include_path(get_include_path() . PATH_SEPARATOR . $pdfLibraryPath);
     }
     $rendererName = get_class($this) . '\\' . $pdfLibraryName;
     $this->renderer = new $rendererName($phpWord);
 }
예제 #4
0
 function __construct()
 {
     parent::__construct();
     Autoloader::register();
     Settings::loadConfig();
     Settings::setTempDir(getcwd() . TMPDIR_WORD);
     // Set writers
     $writers = array('Word2007' => 'docx', 'ODText' => 'odt', 'RTF' => 'rtf', 'HTML' => 'html', 'PDF' => 'pdf');
     // Set PDF renderer
     if (Settings::getPdfRendererPath() === null) {
         $writers['PDF'] = null;
     }
     // Return to the caller script when runs by CLI
     if (PHP_SAPI == 'cli') {
         return;
     }
 }
예제 #5
0
 */
use PhpOffice\PhpWord\Autoloader;
use PhpOffice\PhpWord\Settings;
use PhpOffice\PhpWord\IOFactory;
error_reporting(E_ALL);
define('CLI', PHP_SAPI == 'cli' ? true : false);
define('EOL', CLI ? PHP_EOL : '<br />');
define('SCRIPT_FILENAME', basename($_SERVER['SCRIPT_FILENAME'], '.php'));
define('IS_INDEX', SCRIPT_FILENAME == 'index');
require_once __DIR__ . '/../src/PhpWord/Autoloader.php';
Autoloader::register();
Settings::loadConfig();
// Set writers
$writers = array('Word2007' => 'docx', 'ODText' => 'odt', 'RTF' => 'rtf', 'HTML' => 'html', 'PDF' => 'pdf');
// Set PDF renderer
if (Settings::getPdfRendererPath() === null) {
    $writers['PDF'] = null;
}
// Return to the caller script when runs by CLI
if (CLI) {
    return;
}
// Set titles and names
$pageHeading = str_replace('_', ' ', SCRIPT_FILENAME);
$pageTitle = IS_INDEX ? 'Welcome to ' : "{$pageHeading} - ";
$pageTitle .= 'PHPWord';
$pageHeading = IS_INDEX ? '' : "<h1>{$pageHeading}</h1>";
// Populate samples
$files = '';
if ($handle = opendir('.')) {
    while (false !== ($file = readdir($handle))) {
/**
 * Header file
 */
use PhpOffice\PhpWord\Autoloader;
use PhpOffice\PhpWord\Settings;
error_reporting(E_ALL);
define('CLI', PHP_SAPI == 'cli' ? true : false);
define('EOL', CLI ? PHP_EOL : '<br />');
define('SCRIPT_FILENAME', basename($_SERVER['SCRIPT_FILENAME'], '.php'));
define('IS_INDEX', SCRIPT_FILENAME == 'index');
Autoloader::register();
Settings::loadConfig();
// Set writers
$writers = array('Word2007' => 'docx', 'ODText' => 'odt', 'RTF' => 'rtf', 'HTML' => 'html', 'PDF' => 'pdf');
// Set PDF renderer
if (null === Settings::getPdfRendererPath()) {
    $writers['PDF'] = null;
}
// Return to the caller script when runs by CLI
if (CLI) {
    return;
}
// Set titles and names
$pageHeading = str_replace('_', ' ', SCRIPT_FILENAME);
$pageTitle = IS_INDEX ? 'Welcome to ' : "{$pageHeading} - ";
$pageTitle .= 'PHPWord';
$pageHeading = IS_INDEX ? '' : "<h1>{$pageHeading}</h1>";
// Populate samples
$files = '';
if ($handle = opendir('.')) {
    while (false !== ($file = readdir($handle))) {
예제 #7
-1
 /**
  * Create new instance
  *
  * @param PhpWord $phpWord PhpWord object
  * @throws \PhpOffice\PhpWord\Exception\Exception
  */
 public function __construct(PhpWord $phpWord)
 {
     parent::__construct($phpWord);
     $includeFile = Settings::getPdfRendererPath() . '/' . $this->includeFile;
     if (file_exists($includeFile)) {
         /** @noinspection PhpIncludeInspection Dynamic includes */
         require_once $includeFile;
     } else {
         // @codeCoverageIgnoreStart
         // Can't find any test case. Uncomment when found.
         throw new Exception('Unable to load PDF Rendering library');
         // @codeCoverageIgnoreEnd
     }
 }