37 lines
923 B
PHP
37 lines
923 B
PHP
|
|
<?php
|
|
|
|
|
|
$pay_pal_items=array(
|
|
"name" => fxRemoveHtml(fxUnescape($tabEvenement['general']['eve_nom_' . $strLangue])),
|
|
"quantity" =>1,
|
|
"unit_amount" =>$tabTotal['total'],
|
|
"sku" =>$_SESSION['no_panier']
|
|
);
|
|
$paypal_purchase_units= array(
|
|
array(
|
|
"custom_id" => $_SESSION['no_panier'],
|
|
"description" => fxRemoveHtml(fxUnescape($tabEvenement['general']['eve_nom_' . $strLangue])),
|
|
"amount" => array(
|
|
"currency_code" => "CAD",
|
|
"value" =>$tabTotal['total']
|
|
),
|
|
"items" => array($pay_pal_items
|
|
),
|
|
"shipping" => array(
|
|
"name" => array(
|
|
"full_name" => "$firstName $lastName"),
|
|
"address" => array(
|
|
"address_line_1" => fxreplace_accents_string(fxUnescape($tabAcheteur['com_adresse'])),
|
|
"admin_area_2" => fxreplace_accents_string(fxUnescape($tabAcheteur['com_ville'])),
|
|
"admin_area_1" => $mem_province,
|
|
"postal_code" => strtoupper(fxUnescape($tabAcheteur['com_codepostal'])),
|
|
"country_code" => $mem_var_paypal['CountryCode']
|
|
|
|
|
|
)
|
|
)
|
|
|
|
)
|
|
);
|