2020-05-26 15:59:10 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2020-07-04 23:25:24 +02:00
|
|
|
* See LICENSE file for license details.
|
2020-05-26 15:59:10 +02:00
|
|
|
*
|
|
|
|
* @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-26 15:59:10 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace D3\PdfDocuments\Application\Model\Interfaces;
|
|
|
|
|
2020-05-26 16:32:22 +02:00
|
|
|
use OxidEsales\Eshop\Application\Model\Order;
|
|
|
|
|
2020-05-30 01:17:27 +02:00
|
|
|
interface pdfdocumentsOrderInterface extends pdfdocumentsGenericInterface
|
2020-05-26 15:59:10 +02:00
|
|
|
{
|
2020-05-27 09:46:44 +02:00
|
|
|
/**
|
|
|
|
* @param Order $order
|
|
|
|
*/
|
2020-05-26 16:12:17 +02:00
|
|
|
public function setOrder(Order $order);
|
|
|
|
|
2020-05-27 09:46:44 +02:00
|
|
|
/**
|
|
|
|
* @return Order
|
|
|
|
*/
|
2020-05-26 16:12:17 +02:00
|
|
|
public function getOrder();
|
2020-06-04 10:31:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTypeForFilename();
|
2020-05-26 15:59:10 +02:00
|
|
|
}
|