pdfdokumente/Application/Model/Documents/deliverynotePdf.php

48 lines
906 B
PHP
Raw Normal View History

<?php
/**
2020-07-04 23:25:24 +02:00
* See LICENSE file for license details.
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2020-07-04 23:25:24 +02:00
* @author D3 Data Development - Max Buhe <support@shopmodule.com>
* @link http://www.oxidmodule.com
*/
2020-05-28 13:32:34 +02:00
namespace D3\PdfDocuments\Application\Model\Documents;
2020-05-30 01:17:27 +02:00
use D3\PdfDocuments\Application\Model\AbstractClasses\pdfdocumentsOrder;
2020-05-30 01:17:27 +02:00
class deliverynotePdf extends pdfdocumentsOrder
{
2020-05-30 00:48:43 +02:00
/**
* @return string
*/
public function getRequestId()
{
return 'dnote';
}
/**
* @return string
*/
public function getTitleIdent()
{
2020-07-03 20:04:21 +02:00
return "D3_PDFDOCUMENTS_DELIVERYNOTE";
2020-05-30 00:48:43 +02:00
}
/**
* @return string
*/
public function getTypeForFilename()
{
return 'delnote';
}
2020-05-30 00:48:43 +02:00
/**
* @return string
*/
public function getTemplate()
{
return 'd3deliverynote_pdf.tpl';
}
}