関数
CartPage::getCheckoutParams()
Amazon Payチェックアウトセッションの作成用URLを返す
戻り値 戻り値
ファイル: src/Views/CartPage/CartPage.php
public function getCheckoutParams() {
$chargetype = 'once';
$amzproducttype = 'PayAndShip';
if (defined('WCEX_DLSELLER')) {
if (!dlseller_have_shipped()) {
$amzproducttype = 'PayOnly';
}
}
$urlpt = strtolower($amzproducttype);
return [
'url' => "/checkout/quickpay/{$urlpt}/{$chargetype}/createSession",
'productType' => $amzproducttype,
];
}