Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
8 | public function __construct() { |
||
9 | $this->url = 'https://secure.ogone.com/'; |
||
10 | $this->product_url = __( 'https://payment-services.ingenico.com/nl/en', 'pronamic_ideal' ); |
||
11 | $this->dashboard_url = 'https://secure.ogone.com/'; |
||
12 | $this->provider = 'ogone'; |
||
13 | $this->supports = array( |
||
|
|||
14 | 'webhook', |
||
15 | ); |
||
16 | |||
17 | // Actions. |
||
18 | $function = array( __NAMESPACE__ . '\Listener', 'listen' ); |
||
19 | |||
20 | if ( ! has_action( 'wp_loaded', $function ) ) { |
||
21 | add_action( 'wp_loaded', $function ); |
||
22 | } |
||
25 |