105 lines
3.0 KiB
PHP
Executable File
105 lines
3.0 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* 2007-2013 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-2013 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
include_once(dirname(__FILE__).'/../../../config/config.inc.php');
|
|
include_once(dirname(__FILE__).'/../../../init.php');
|
|
|
|
if (_PS_VERSION_ < '1.5')
|
|
require_once(_PS_ROOT_DIR_.'/controllers/OrderConfirmationController.php');
|
|
|
|
class PayPalIntegralEvolutionSubmit extends OrderConfirmationControllerCore
|
|
{
|
|
public $context;
|
|
|
|
public function __construct()
|
|
{
|
|
/** Backward compatibility */
|
|
include_once(_PS_MODULE_DIR_.'/paypal/backward_compatibility/backward.php');
|
|
$this->context = Context::getContext();
|
|
parent::__construct();
|
|
}
|
|
|
|
/*
|
|
* Display PayPal order confirmation page
|
|
*/
|
|
public function displayContent()
|
|
{
|
|
$id_order = (int)Tools::getValue('id_order');
|
|
$order = PayPalOrder::getOrderById($id_order);
|
|
$price = Tools::displayPrice($order['total_paid'], $this->context->currency);
|
|
|
|
$this->context->smarty->assign(array(
|
|
'order' => $order,
|
|
'price' => $price
|
|
));
|
|
|
|
echo $this->context->smarty->fetch(_PS_MODULE_DIR_.'/paypal/views/templates/front/order-confirmation.tpl');
|
|
}
|
|
}
|
|
|
|
$id_cart = Tools::getValue('id_cart');
|
|
$id_module = Tools::getValue('id_module');
|
|
$id_order = Tools::getValue('id_order');
|
|
$key = Tools::getValue('key');
|
|
|
|
if ($id_module && $id_order && $id_cart && $key)
|
|
{
|
|
if (_PS_VERSION_ < '1.5')
|
|
{
|
|
$integral_evolution_submit = new PayPalIntegralEvolutionSubmit();
|
|
$integral_evolution_submit->run();
|
|
}
|
|
}
|
|
elseif ($id_cart)
|
|
{
|
|
// Redirection
|
|
$values = array(
|
|
'id_cart' => (int)$id_cart,
|
|
'id_module' => (int)Module::getInstanceByName('paypal')->id,
|
|
'id_order' => (int)Order::getOrderByCartId((int)$id_cart),
|
|
);
|
|
|
|
if (_PS_VERSION_ < '1.5')
|
|
{
|
|
global $cookie;
|
|
|
|
$customer = new Customer($cookie->id_customer);
|
|
$values['key'] = $customer->secure_key;
|
|
$url = _MODULE_DIR_.'/paypal/integral_evolution/submit.php';
|
|
Tools::redirectLink($url.'?'.http_build_query($values, '', '&'));
|
|
}
|
|
else
|
|
{
|
|
$values['key'] = Context::getContext()->customer->secure_key;
|
|
$link = Context::getContext()->link->getModuleLink('paypal', 'submit', $values);
|
|
Tools::redirect($link);
|
|
}
|
|
}
|
|
else
|
|
Tools::redirectLink(__PS_BASE_URI__);
|
|
|
|
exit(0);
|