%PDF- %PDF-
| Direktori : /www/varak.net/shop.varak.net/modules/paypal/integral_evolution/ |
| Current File : /www/varak.net/shop.varak.net/modules/paypal/integral_evolution/submit.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
*/
include_once dirname(__FILE__).'/../../../config/config.inc.php';
include_once dirname(__FILE__).'/../../../init.php';
if (version_compare(_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,
));
if (version_compare(_PS_VERSION_, '1.5', '>')) {
$this->context->smarty->assign(array(
'reference_order' => Order::getUniqReferenceOf($id_order),
));
}
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 (version_compare(_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 (version_compare(_PS_VERSION_, '1.5', '<')) {
$customer = new Customer(Context::getContext()->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);