-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathAPI.php
More file actions
46 lines (24 loc) · 1.13 KB
/
API.php
File metadata and controls
46 lines (24 loc) · 1.13 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
<?php
namespace SkyVerge\WooCommerce\GatewayTestPlugin;
use SkyVerge\WooCommerce\PluginFramework\v6_0_2 as Framework;
defined( 'ABSPATH' ) or exit;
class API implements Framework\SV_WC_Payment_Gateway_API {
public function credit_card_authorization( \WC_Order $order ) { }
public function credit_card_charge( \WC_Order $order ) { }
public function credit_card_capture( \WC_Order $order ) { }
public function check_debit( \WC_Order $order ) { }
public function refund( \WC_Order $order ) { }
public function void( \WC_Order $order ) { }
public function tokenize_payment_method( \WC_Order $order ) { }
public function update_tokenized_payment_method( \WC_Order $order ) { }
public function supports_update_tokenized_payment_method() { }
public function remove_tokenized_payment_method( $token, $customer_id ) { }
public function supports_remove_tokenized_payment_method() {
return false;
}
public function get_tokenized_payment_methods( $customer_id ) { }
public function supports_get_tokenized_payment_methods() { }
public function get_request() { }
public function get_response() { }
public function get_order() { }
}