PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
woocommerce-gateway-stripe
/
includes
/
admin
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Controls whether we're on the settings page and enqueues the JS code. * * @since 5.4.1 */ class WC_Stripe_Settings_Controller { /** * The Stripe account instance. * * @var WC_Stripe_Account */ private $account; /** * Constructor * * @param WC_Stripe_Account $account Stripe account */ public function __construct( WC_Stripe_Account $account ) { $this->account = $account; add_action( 'admin_enqueue_scripts', [ $this, 'admin_scripts' ] ); add_action( 'wc_stripe_gateway_admin_options_wrapper', [ $this, 'admin_options' ] ); add_action( 'admin_init', [ $this, 'maybe_update_account_data' ] ); } /** * Prints the admin options for the gateway. * Remove this action once we're fully migrated to UPE and move the wrapper in the `admin_options` method of the UPE gateway. * * @param WC_Stripe_Payment_Gateway $gateway the Stripe gateway. */ public function admin_options( WC_Stripe_Payment_Gateway $gateway ) { global $hide_save_button; $hide_save_button = true; echo '<h2>' . esc_html( $gateway->get_method_title() ); wc_back_link( __( 'Return to payments', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout' ) ); echo '</h2>'; $settings = get_option( WC_Stripe_Connect::SETTINGS_OPTION, [] ); $account_data_exists = ( ! empty( $settings['publishable_key'] ) && ! empty( $settings['secret_key'] ) ) || ( ! empty( $settings['test_publishable_key'] ) && ! empty( $settings['test_secret_key'] ) ); echo $account_data_exists ? '<div id="wc-stripe-account-settings-container"></div>' : '<div id="wc-stripe-new-account-container"></div>'; } /** * Load admin scripts. */ public function admin_scripts( $hook_suffix ) { if ( 'woocommerce_page_wc-settings' !== $hook_suffix ) { return; } // TODO: refactor this to a regex approach, we will need to touch `should_enqueue_in_current_tab_section` to support it if ( ! ( WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_sepa' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_giropay' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_ideal' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_bancontact' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_eps' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_sofort' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_p24' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_alipay' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_multibanco' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_oxxo' ) || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_boleto' ) ) ) { return; } $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; // Webpack generates an assets file containing a dependencies array for our built JS file. $script_asset_path = WC_STRIPE_PLUGIN_PATH . '/build/upe_settings.asset.php'; $script_asset = file_exists( $script_asset_path ) ? require $script_asset_path : [ 'dependencies' => [], 'version' => WC_STRIPE_VERSION, ]; wp_register_script( 'woocommerce_stripe_admin', plugins_url( 'build/upe_settings.js', WC_STRIPE_MAIN_FILE ), $script_asset['dependencies'], $script_asset['version'], true ); wp_register_style( 'woocommerce_stripe_admin', plugins_url( 'build/upe_settings.css', WC_STRIPE_MAIN_FILE ), [ 'wc-components' ], $script_asset['version'] ); $oauth_url = woocommerce_gateway_stripe()->connect->get_oauth_url(); if ( is_wp_error( $oauth_url ) ) { $oauth_url = ''; } $message = sprintf( /* translators: 1) Html strong opening tag 2) Html strong closing tag */ esc_html__( '%1$sWarning:%2$s your site\'s time does not match the time on your browser and may be incorrect. Some payment methods depend on webhook verification and verifying webhooks with a signing secret depends on your site\'s time being correct, so please check your site\'s time before setting a webhook secret. You may need to contact your site\'s hosting provider to correct the site\'s time.', 'woocommerce-gateway-stripe' ), '<strong>', '</strong>' ); $params = [ 'time' => time(), 'i18n_out_of_sync' => $message, 'is_upe_checkout_enabled' => WC_Stripe_Feature_Flags::is_upe_checkout_enabled(), 'stripe_oauth_url' => $oauth_url, ]; wp_localize_script( 'woocommerce_stripe_admin', 'wc_stripe_settings_params', $params ); wp_set_script_translations( 'woocommerce_stripe_admin', 'woocommerce-gateway-stripe' ); wp_enqueue_script( 'woocommerce_stripe_admin' ); wp_enqueue_style( 'woocommerce_stripe_admin' ); } /** * Updates the Stripe account data on the settings page. * * Some plugin settings (eg statement descriptions) require the latest update-to-date data from the Stripe Account to display * correctly. This function clears the account cache when the settings page is loaded to ensure the latest data is displayed. */ public function maybe_update_account_data() { // Exit early if we're not on the payments settings page. if ( ! isset( $_GET['page'], $_GET['tab'] ) || 'wc-settings' !== $_GET['page'] || 'checkout' !== $_GET['tab'] ) { return; } if ( ! isset( $_GET['section'] ) || 'stripe' !== $_GET['section'] ) { return; } if ( ! WC_Stripe::get_instance()->connect->is_connected() ) { return []; } $this->account->clear_cache(); } }
[-] class-wc-stripe-settings-controller.php
[edit]
[-] class-wc-rest-stripe-account-keys-controller.php
[edit]
[-] class-wc-stripe-inbox-notes.php
[edit]
[-] stripe-settings.php
[edit]
[-] class-wc-rest-stripe-tokens-controller.php
[edit]
[-] class-wc-stripe-rest-upe-flag-toggle-controller.php
[edit]
[-] stripe-sepa-settings.php
[edit]
[-] class-wc-stripe-old-settings-upe-toggle-controller.php
[edit]
[+]
..
[-] stripe-multibanco-settings.php
[edit]
[-] stripe-sofort-settings.php
[edit]
[-] stripe-alipay-settings.php
[edit]
[-] class-wc-rest-stripe-payment-gateway-controller.php
[edit]
[-] class-wc-stripe-admin-notices.php
[edit]
[-] stripe-p24-settings.php
[edit]
[-] class-wc-rest-stripe-locations-controller.php
[edit]
[-] class-wc-stripe-rest-base-controller.php
[edit]
[-] class-wc-rest-stripe-settings-controller.php
[edit]
[-] stripe-oxxo-settings.php
[edit]
[-] stripe-ideal-settings.php
[edit]
[-] stripe-giropay-settings.php
[edit]
[-] stripe-eps-settings.php
[edit]
[-] class-wc-stripe-upe-compatibility-controller.php
[edit]
[-] stripe-bancontact-settings.php
[edit]
[-] stripe-boleto-settings.php
[edit]
[-] class-wc-rest-stripe-connection-tokens-controller.php
[edit]
[-] class-wc-stripe-payment-requests-controller.php
[edit]
[-] class-wc-rest-stripe-account-controller.php
[edit]
[-] class-wc-rest-stripe-orders-controller.php
[edit]
[-] class-wc-stripe-privacy.php
[edit]
[-] class-wc-stripe-payment-gateways-controller.php
[edit]