/var/www/html_us/wp-content/plugins/woocommerce/src/Blocks/Payments/Integrations/Cheque.php


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
76
77
78
<?php
namespace Automattic\WooCommerce\Blocks\Payments\Integrations;

use 
Exception;
use 
Automattic\WooCommerce\Blocks\Assets\Api;
use 
WC_Gateway_Cheque;

/**
 * Cheque payment method integration
 *
 * @since 2.6.0
 */
final class Cheque extends AbstractPaymentMethodType {
    
/**
     * Payment method name defined by payment methods extending this class.
     *
     * @var string
     */
    
protected $name WC_Gateway_Cheque::ID;

    
/**
     * An instance of the Asset Api
     *
     * @var Api
     */
    
private $asset_api;

    
/**
     * Constructor
     *
     * @param Api $asset_api An instance of Api.
     */
    
public function __constructApi $asset_api ) {
        
$this->asset_api $asset_api;
    }

    
/**
     * Initializes the payment method type.
     */
    
public function initialize() {
        
$this->settings get_option'woocommerce_cheque_settings', [] );
    }

    
/**
     * Returns if this payment method should be active. If false, the scripts will not be enqueued.
     *
     * @return boolean
     */
    
public function is_active() {
        return 
filter_var$this->get_setting'enabled'false ), FILTER_VALIDATE_BOOLEAN );
    }

    
/**
     * Returns an array of scripts/handles to be registered for this payment method.
     *
     * @return array
     */
    
public function get_payment_method_script_handles() {
        
$this->asset_api->register_script(
            
'wc-payment-method-cheque',
            
'assets/client/blocks/wc-payment-method-cheque.js'
        
);
        return [ 
'wc-payment-method-cheque' ];
    }

    
/**
     * Returns an array of key=>value pairs of data made available to the payment methods script.
     *
     * @return array
     */
    
public function get_payment_method_data() {
        return [
            
'title'       => $this->get_setting'title' ),
            
'description' => $this->get_setting'description' ),
            
'supports'    => $this->get_supported_features(),
        ];
    }
}