50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------------
|
|
| CubeCart 4
|
|
| ========================================
|
|
| CubeCart is a Trade Mark of Devellion Limited
|
|
| Copyright Devellion Limited 2005 - 2006. All rights reserved.
|
|
| Devellion Limited,
|
|
| 5 Bridge Street,
|
|
| Bishops Stortford,
|
|
| HERTFORDSHIRE.
|
|
| CM23 2JU
|
|
| UNITED KINGDOM
|
|
| http://www.devellion.com
|
|
| UK Private Limited Company No. 5323904
|
|
| ========================================
|
|
| Web: http://www.cubecart.com
|
|
| Date: Tuesday, 17th October 2006
|
|
| Email: sales (at) cubecart (dot) com
|
|
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
|
|
| Licence Info: http://www.cubecart.com/site/faq/license.php
|
|
+--------------------------------------------------------------------------
|
|
| transfer.inc.php
|
|
| ========================================
|
|
| Core functions for the PayPal Direct Payment Gateway
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
|
|
function repeatVars(){
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
function fixedVars(){
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
///////////////////////////
|
|
// Other Vars
|
|
////////
|
|
$formAction = "index.php?_g=co&_a=step3&process=1&cart_order_id=".$_GET['cart_order_id'];
|
|
$formMethod = "post";
|
|
$formTarget = "_self";
|
|
$transfer = "manual";
|
|
?>
|