Lines:
1 to 45 of 45
<?php /** * Gateway Functions * * @package EDD * @subpackage Gateways * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.0 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* function edd_get_payment_gateways() – Returns a list of all available gateways. */ /* function edd_get_enabled_payment_gateways() – Returns a list of all enabled gateways. */ /* function edd_is_gateway_active() – Checks whether a specified gateway is activated. */ /* function edd_get_default_gateway() – Gets the default payment gateway selected from the EDD Settings */ /* function edd_get_gateway_admin_label() – Returns the admin label for the specified gateway */ /* function edd_get_gateway_checkout_label() – Returns the checkout label for the specified gateway */ /* function edd_get_gateway_supports() – Returns the options a gateway supports */ /* function edd_gateway_supports_buy_now() – Checks if a gateway supports buy now */ /* function edd_shop_supports_buy_now() – Checks if an enabled gateway supports buy now */ /* function edd_build_straight_to_gateway_data() – Build the purchase data for a straight-to-gateway purchase button */ /* function edd_send_to_gateway() – Sends all the payment data to the specified gateway */ /* function edd_show_gateways() – Determines if the gateway menu should be shown */ /* function edd_get_chosen_gateway() – Determines what the currently selected gateway is */ /* function edd_record_gateway_error() – Record a gateway error */ /* function edd_count_sales_by_gateway() – Counts the number of purchases made with a gateway */