2015-12-16 17:44:47 +01:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* This Software is the property of Data Development and is protected
|
|
|
|
|
* by copyright law - it is NOT Freeware.
|
|
|
|
|
*
|
|
|
|
|
* Any unauthorized use of this software without a valid license
|
|
|
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
|
|
|
* civil and criminal law.
|
|
|
|
|
*
|
|
|
|
|
* http://www.shopmodule.com
|
|
|
|
|
*
|
|
|
|
|
* @copyright <EFBFBD> D<EFBFBD> Data Development, Thomas Dartsch
|
|
|
|
|
* @author D<EFBFBD> Data Development - Daniel Seifert <ds@shopmodule.com>
|
|
|
|
|
* @link http://www.oxidmodule.com
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class d3dev extends oxUBase
|
|
|
|
|
{
|
|
|
|
|
public function showOrderMailContent()
|
|
|
|
|
{
|
2017-11-17 12:38:46 +01:00
|
|
|
|
header('Content-type: text/html; charset='.oxRegistry::getLang()->translateString('charset'));
|
|
|
|
|
|
2015-12-16 17:44:47 +01:00
|
|
|
|
if (oxRegistry::getConfig()->getActiveShop()->oxshops__oxproductive->value
|
|
|
|
|
|| false == oxRegistry::getConfig()->getConfigParam('blD3DevShowOrderMailsInBrowser')
|
|
|
|
|
) {
|
|
|
|
|
oxRegistry::getUtils()->redirect(oxRegistry::getConfig()->getShopUrl().'index.php?cl=start');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$sTpl = oxRegistry::getConfig()->getRequestParameter('type');
|
|
|
|
|
|
|
|
|
|
/** @var d3_dev_thankyou $oThankyou */
|
|
|
|
|
$oThankyou = oxNew('thankyou');
|
|
|
|
|
$oOrder = $oThankyou->d3GetLastOrder();
|
|
|
|
|
|
|
|
|
|
/** @var d3_dev_oxemail $oEmail */
|
|
|
|
|
$oEmail = oxNew('oxemail');
|
|
|
|
|
echo $oEmail->d3GetOrderMailContent($oOrder, $sTpl);
|
|
|
|
|
die();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function showInquiryMailContent()
|
|
|
|
|
{
|
|
|
|
|
if (oxRegistry::getConfig()->getActiveShop()->oxshops__oxproductive->value
|
|
|
|
|
|| false == oxRegistry::getConfig()->getConfigParam('blD3DevShowOrderMailsInBrowser')
|
|
|
|
|
) {
|
|
|
|
|
oxRegistry::getUtils()->redirect(oxRegistry::getConfig()->getShopUrl().'index.php?cl=start');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$sTpl = oxRegistry::getConfig()->getRequestParameter('type');
|
|
|
|
|
|
|
|
|
|
/** @var d3_dev_thankyou $oThankyou */
|
|
|
|
|
$oThankyou = oxNew('thankyou');
|
|
|
|
|
$oOrder = $oThankyou->d3GetLastInquiry();
|
|
|
|
|
|
|
|
|
|
/** @var d3_dev_oxemail $oEmail */
|
|
|
|
|
$oEmail = oxNew('oxemail');
|
|
|
|
|
echo $oEmail->d3GetInquiryMailContent($oOrder, $sTpl);
|
|
|
|
|
die();
|
|
|
|
|
}
|
|
|
|
|
}
|