diff --git a/Modules/Application/Model/d3_Order_PdfDocuments.php b/Modules/Application/Model/d3_Order_PdfDocuments.php deleted file mode 100644 index 2df74d0..0000000 --- a/Modules/Application/Model/d3_Order_PdfDocuments.php +++ /dev/null @@ -1,41 +0,0 @@ - - * @link http://www.oxidmodule.com - */ - -namespace D3\PdfDocuments\Modules\Application\Model; - -use D3\PdfDocuments\Application\Controller\orderOverviewPdfGenerator; -use D3\PdfDocuments\Application\Model\Exceptions\noBaseObjectSetException; -use D3\PdfDocuments\Application\Model\Exceptions\noPdfHandlerFoundException; -use D3\PdfDocuments\Application\Model\Exceptions\pdfGeneratorExceptionAbstract; - -class d3_Order_PdfDocuments extends d3_Order_PdfDocuments_parent -{ - /** - * compatibility to OXID Invoice PDF module - * @param string $sFilename - * @param int $iSelLang - * @param string $target - * @throws noBaseObjectSetException - * @throws noPdfHandlerFoundException - * @throws pdfGeneratorExceptionAbstract - */ - public function genPdf($sFilename, $iSelLang = 0, $target = 'I') - { - $generator = oxNew( orderOverviewPdfGenerator::class ); - $generator->generatePdf($this, $sFilename, $iSelLang, $target); - } -}