mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 11:07:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\PdfMaker;
 | |
| 
 | |
| class PdfMaker
 | |
| {
 | |
|     use PdfMakerUtilities;
 | |
| 
 | |
|     protected $data;
 | |
| 
 | |
|     public $design;
 | |
| 
 | |
|     public $html;
 | |
| 
 | |
|     public $document;
 | |
| 
 | |
|     private $xpath;
 | |
| 
 | |
|     private $filters = [
 | |
|         '<![CDATA[' => '',
 | |
|         ']]>' => '',
 | |
|         '<?xml version="1.0" encoding="utf-8" standalone="yes"??>' => '',
 | |
|     ];
 | |
| 
 | |
|     public function __construct(array $data)
 | |
|     {
 | |
|         $this->data = $data;
 | |
|     }
 | |
| 
 | |
|     public function design(string $design)
 | |
|     {
 | |
|         $this->design = new $design();
 | |
| 
 | |
|         $this->initializeDomDocument();
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     public function build()
 | |
|     {
 | |
|         if (isset($this->data['template'])) {
 | |
|             $this->updateElementProperties($this->data['template']);
 | |
|         }
 | |
| 
 | |
|         if (isset($this->data['variables'])) {
 | |
|             $this->updateVariables($this->data['variables']);
 | |
|         }
 | |
|         
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     public function getCompiledHTML($final = false)
 | |
|     {
 | |
|         if ($final) {
 | |
|             $html = $this->document->saveXML();
 | |
| 
 | |
|             $filtered = strtr($html, $this->filters);
 | |
| 
 | |
|             return $filtered;
 | |
|         }
 | |
| 
 | |
|         return $this->document->saveXML();
 | |
|     }
 | |
| }
 |