EDIT_BASKET_URL —
Interchange 5.6.0:
Source: lib/Vend/Payment/GoogleCheckout.pm
Line 395 (context shows lines 385-399 in googlecheckout():389)
package Vend::Payment;
use strict;
my ($gcourl,$merchantid,$merchantkey,$gcoserver,$xmlOut, $taxrate, $state, \
\
\
$header, $gcorequest, $actual, $orderID);
sub googlecheckout {
my ($opt, $purchaseID, $mv_order_number, $msg, $cart, %result);
$gcoserver = charge_param('googlehost') || $::Variable->{MV_PAYMENT_HOST} \
\
\
|| 'https://checkout.google.com/api/checkout/v2'; # live
my $catroot = charge_param('cat_root') || $::Variable->{CAT_ROOT};
my $ordersdir = charge_param('ordersdir') || 'orders';
my $currency = $::Values->{currency} || charge_param('currency') || 'GBP';
my $editbasketurl = charge_param('edit_basket_url') || $::Variable->{EDIT_BASKET_URL};
$editbasketurl =~ s/\.html$//i;
$editbasketurl .= ".html?id=$::Session->{id}";
my $continueshoppingurl = charge_param('continue_shopping_url') || $::Variable->{CONTINUE_SHOPPING_URL};
my $receipturl = charge_param('receipt_url') || $::Variable->{RECEIPT_URL};