'wc-settings', 'tab' => 'checkout', 'section' => WC_Payment_Gateway_WCPay::GATEWAY_ID, ]; /** * Initialize class actions. * * @param WC_Payment_Gateway_WCPay $gateway Payment Gateway. */ public function __construct( WC_Payment_Gateway_WCPay $gateway ) { $this->gateway = $gateway; } /** * Initializes this class's WP hooks. * * @return void */ public function init_hooks() { add_action( 'woocommerce_woocommerce_payments_admin_notices', [ $this, 'display_test_mode_notice' ] ); add_filter( 'plugin_action_links_' . plugin_basename( WCPAY_PLUGIN_FILE ), [ $this, 'add_plugin_links' ] ); } /** * Add notice explaining test mode when it's enabled. */ public function display_test_mode_notice() { if ( WC_Payments::mode()->is_test() ) { ?>

' . esc_html__( 'Settings', 'woocommerce-payments' ) . '', ]; return array_merge( $plugin_links, $links ); } /** * Whether the current page is the WooPayments settings page. * * @return bool */ public static function is_current_page_settings() { return count( self::$settings_url_params ) === count( array_intersect_assoc( $_GET, self::$settings_url_params ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended } /** * Returns the URL of the configuration screen for this gateway, for use in internal links. * * @param array $query_args Optional additional query args to append to the URL. * * @return string URL of the configuration screen for this gateway */ public static function get_settings_url( $query_args = [] ) { return admin_url( add_query_arg( array_merge( self::$settings_url_params, $query_args ), 'admin.php' ) ); // nosemgrep: audit.php.wp.security.xss.query-arg -- constant string is passed in. } }