Lines:
1 to 25 of 25
<?php /** * PayPal Settings * * @package easy-digital-downloads * @copyright Copyright (c) 2021, Sandhills Development, LLC * @license GPL2+ * @since 2.11 */ namespace EDD\Gateways\PayPal\Admin; /* function get_settings_url() – Returns the URL to the PayPal Commerce settings page. */ /* function register_paypal_gateway_section() – Register the PayPal Standard gateway subsection */ add_filter( 'edd_settings_sections_gateways', __NAMESPACE__ . '\register_paypal_gateway_section', 1, 1 ); /* function register_gateway_settings() – Registers the PayPal Standard settings for the PayPal Standard subsection */ add_filter( 'edd_settings_gateways', __NAMESPACE__ . '\register_gateway_settings', 1, 1 ); /* function documentation_settings_field() – Returns the content for the documentation settings. */