class-wc-payments-admin-settings.php
1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* Class WC_Payments_Admin_Settings
*
* @package WooCommerce\Payments\Admin
*/
/**
* WC_Payments_Admin_Settings class.
*/
class WC_Payments_Admin_Settings {
/**
* WC_Payment_Gateway_WCPay.
*
* @var WC_Payment_Gateway_WCPay
*/
private $gateway;
/**
* Set of parameters to build the URL to the gateway's settings page.
*
* @var string[]
*/
private static $settings_url_params = [
'page' => '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;
add_action( 'woocommerce_woocommerce_payments_admin_notices', [ $this, 'display_test_mode_notice' ] );
}
/**
* Add notice explaining test mode when it's enabled.
*/
public function display_test_mode_notice() {
if ( $this->gateway->is_in_test_mode() ) {
?>
<div id="wcpay-test-mode-notice" class="notice notice-warning">
<p>
<b><?php esc_html_e( 'Test mode active: ', 'woocommerce-payments' ); ?></b>
<?php esc_html_e( "All transactions are simulated. Customers can't make real purchases through WooCommerce Payments.", 'woocommerce-payments' ); ?>
</p>
</div>
<?php
}
}
/**
* Whether the current page is the WooCommerce Payments 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.
*
* @return string URL of the configuration screen for this gateway
*/
public static function get_settings_url() {
return admin_url( add_query_arg( self::$settings_url_params, 'admin.php' ) );
}
}