* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 7091 $ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * @deprecated This file is deprecated, use moduleController instead */ /* SSL Management */ $useSSL = true; include(dirname(__FILE__).'/../../config/config.inc.php'); Tools::displayFileAsDeprecated(); include(dirname(__FILE__).'/../../header.php'); include(dirname(__FILE__).'/cheque.php'); if (!Context::getContext()->customer->isLogged(true)) Tools::redirect('index.php?controller=authentication&back=order.php'); $cheque = new Cheque(); echo $cheque->execPayment($cart); include_once(dirname(__FILE__).'/../../footer.php');