119 lines
3.4 KiB
PHP
119 lines
3.4 KiB
PHP
<?php
|
|
/*
|
|
* 2007-2016 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2016 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
if (!defined('_PS_VERSION_'))
|
|
exit;
|
|
|
|
class CashOnDelivery extends PaymentModule
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->name = 'cashondelivery';
|
|
$this->tab = 'payments_gateways';
|
|
$this->version = '1.0.0';
|
|
$this->author = 'PrestaShop';
|
|
$this->need_instance = 1;
|
|
$this->controllers = array('validation');
|
|
$this->is_eu_compatible = 1;
|
|
|
|
$this->currencies = false;
|
|
|
|
parent::__construct();
|
|
|
|
$this->displayName = $this->l('Cash on delivery (COD)');
|
|
$this->description = $this->l('Accept cash on delivery payments');
|
|
|
|
/* For 1.4.3 and less compatibility */
|
|
$updateConfig = array('PS_OS_CHEQUE', 'PS_OS_PAYMENT', 'PS_OS_PREPARATION', 'PS_OS_SHIPPING', 'PS_OS_CANCELED', 'PS_OS_REFUND', 'PS_OS_ERROR', 'PS_OS_OUTOFSTOCK', 'PS_OS_BANKWIRE', 'PS_OS_PAYPAL', 'PS_OS_WS_PAYMENT');
|
|
if (!Configuration::get('PS_OS_PAYMENT'))
|
|
foreach ($updateConfig as $u)
|
|
if (!Configuration::get($u) && defined('_'.$u.'_'))
|
|
Configuration::updateValue($u, constant('_'.$u.'_'));
|
|
}
|
|
|
|
public function install()
|
|
{
|
|
if (!parent::install() OR !$this->registerHook('payment') OR ! $this->registerHook('displayPaymentEU') OR !$this->registerHook('paymentReturn'))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
public function hasProductDownload($cart)
|
|
{
|
|
foreach ($cart->getProducts() AS $product)
|
|
{
|
|
$pd = ProductDownload::getIdFromIdProduct((int)($product['id_product']));
|
|
if ($pd AND Validate::isUnsignedInt($pd))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public function hookPayment($params)
|
|
{
|
|
if (!$this->active)
|
|
return ;
|
|
|
|
global $smarty;
|
|
|
|
// Check if cart has product download
|
|
if ($this->hasProductDownload($params['cart']))
|
|
return false;
|
|
|
|
|
|
$smarty->assign(array(
|
|
'this_path' => $this->_path, //keep for retro compat
|
|
'this_path_cod' => $this->_path,
|
|
'this_path_ssl' => Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/'.$this->name.'/'
|
|
));
|
|
return $this->display(__FILE__, 'payment.tpl');
|
|
}
|
|
|
|
public function hookDisplayPaymentEU($params)
|
|
{
|
|
if (!$this->active)
|
|
return ;
|
|
|
|
// Check if cart has product download
|
|
if ($this->hasProductDownload($params['cart']))
|
|
return false;
|
|
|
|
return array(
|
|
'cta_text' => $this->l('Pay with cash on delivery (COD)'),
|
|
'logo' => Media::getMediaPath(dirname(__FILE__).'/cashondelivery.jpg'),
|
|
'action' => $this->context->link->getModuleLink($this->name, 'validation', array('confirm' => true), true)
|
|
);
|
|
}
|
|
|
|
public function hookPaymentReturn($params)
|
|
{
|
|
if (!$this->active)
|
|
return ;
|
|
|
|
return $this->display(__FILE__, 'confirmation.tpl');
|
|
}
|
|
}
|