You appear to be a bot. Output may be restricted
Description
Retrieve the checkout URL for Amazon after authentication is complete
Usage
$string = EDD_Amazon_Payments::get_amazon_checkout_uri();
Parameters
Returns
string
Source
File name: easy-digital-downloads/includes/gateways/amazon-payments.php
Lines:
1 to 9 of 9
private function get_amazon_checkout_uri() { if ( is_null( $this->checkout_uri ) ) { $this->checkout_uri = esc_url_raw( add_query_arg( array( 'payment-mode' => 'amazon' ), edd_get_checkout_uri() ) ); } return $this->checkout_uri; }