You appear to be a bot. Output may be restricted
Description
Add actions
Usage
$void = EDD_Amazon_Payments::actions();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/gateways/amazon-payments.php
Lines:
1 to 20 of 20
private function actions() { add_action( 'wp_enqueue_scripts', array( $this, 'print_client' ), 10 ); add_action( 'wp_enqueue_scripts', array( $this, 'load_scripts' ), 11 ); add_action( 'edd_pre_process_purchase', array( $this, 'check_config' ), 1 ); add_action( 'init', array( $this, 'capture_oauth' ), 9 ); add_action( 'init', array( $this, 'signin_redirect' ) ); add_action( 'edd_purchase_form_before_register_login', array( $this, 'login_form' ) ); add_action( 'edd_checkout_error_check', array( $this, 'checkout_errors' ), 10, 2 ); add_action( 'edd_gateway_amazon', array( $this, 'process_purchase' ) ); add_action( 'wp_ajax_edd_amazon_get_address', array( $this, 'ajax_get_address' ) ); add_action( 'wp_ajax_nopriv_edd_amazon_get_address', array( $this, 'ajax_get_address' ) ); add_action( 'edd_pre_process_purchase', array( $this, 'disable_address_requirement' ), 99999 ); add_action( 'init', array( $this, 'process_ipn' ) ); if ( empty( $this->reference_id ) ) { return; } add_action( 'edd_amazon_cc_form', array( $this, 'wallet_form' ) ); }