コード例 #1
0
<?php

/**
 * @deprecated 1.5.0 This file is deprecated, use moduleFrontController instead
 */
include dirname(__FILE__) . '/../../config/config.inc.php';
include dirname(__FILE__) . '/../../header.php';
include dirname(__FILE__) . '/bitpay.php';
$context = Context::getContext();
$cart = $context->cart;
$bitpay = new bitpay();
if ($cart->id_customer == 0 or $cart->id_address_delivery == 0 or $cart->id_address_invoice == 0 or !$bitpay->active) {
    Tools::redirect('index.php?controller=order&step=1');
}
// Check that this payment option is still available in case the customer
// changed his address just before the end of the checkout process
$authorized = false;
foreach (Module::getPaymentModules() as $module) {
    if ($module['name'] == 'bitpay') {
        $authorized = true;
        break;
    }
}
if (!$authorized) {
    die($bitpay->l('This payment method is not available.', 'validation'));
}
echo $bitpay->execPayment($cart);
include_once dirname(__FILE__) . '/../../footer.php';